fix: 修复用户卡片显示被截断的问题

This commit is contained in:
zhang1106
2026-02-06 11:04:38 +08:00
parent 218991c276
commit 80e427d52d
+8 -4
View File
@@ -354,21 +354,25 @@ const AppLayout = ({ children }) => {
boxShadow: designTokens.shadows.small,
position: 'sticky',
top: 0,
zIndex: 99
zIndex: 99,
overflow: 'visible'
}}>
{user && (
<div style={{
display: 'flex',
alignItems: 'center',
gap: '12px'
gap: '12px',
height: '100%'
}}>
<div style={{
display: 'flex',
alignItems: 'center',
gap: '8px',
padding: '6px 12px',
padding: '4px 12px',
background: designTokens.colors.background.secondary,
borderRadius: designTokens.borderRadius.medium
borderRadius: designTokens.borderRadius.medium,
height: '40px',
boxSizing: 'border-box'
}}>
<Avatar
style={{