fix: 修复用户卡片显示被截断的问题
This commit is contained in:
@@ -354,21 +354,25 @@ const AppLayout = ({ children }) => {
|
|||||||
boxShadow: designTokens.shadows.small,
|
boxShadow: designTokens.shadows.small,
|
||||||
position: 'sticky',
|
position: 'sticky',
|
||||||
top: 0,
|
top: 0,
|
||||||
zIndex: 99
|
zIndex: 99,
|
||||||
|
overflow: 'visible'
|
||||||
}}>
|
}}>
|
||||||
{user && (
|
{user && (
|
||||||
<div style={{
|
<div style={{
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
gap: '12px'
|
gap: '12px',
|
||||||
|
height: '100%'
|
||||||
}}>
|
}}>
|
||||||
<div style={{
|
<div style={{
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
gap: '8px',
|
gap: '8px',
|
||||||
padding: '6px 12px',
|
padding: '4px 12px',
|
||||||
background: designTokens.colors.background.secondary,
|
background: designTokens.colors.background.secondary,
|
||||||
borderRadius: designTokens.borderRadius.medium
|
borderRadius: designTokens.borderRadius.medium,
|
||||||
|
height: '40px',
|
||||||
|
boxSizing: 'border-box'
|
||||||
}}>
|
}}>
|
||||||
<Avatar
|
<Avatar
|
||||||
style={{
|
style={{
|
||||||
|
|||||||
Reference in New Issue
Block a user