fix(core): emoji doc name rendering on windows (#8857)

This commit is contained in:
Peng Xiao 2024-11-18 23:28:54 +08:00 committed by GitHub
parent abaea9e605
commit 56a3f054f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View File

@ -74,7 +74,7 @@ globalStyle(`${root} > :last-child`, {
paddingRight: '8px',
});
export const titleIconsWrapper = style({
padding: '0 5px',
width: 34,
display: 'flex',
alignItems: 'center',
gap: '10px',
@ -119,6 +119,8 @@ export const iconCell = style({
fontSize: cssVar('fontH3'),
color: cssVar('iconColor'),
flexShrink: 0,
width: 24,
height: 24,
});
export const tagsCell = style({
display: 'flex',

View File

@ -72,9 +72,10 @@ globalStyle(`${root} > :last-child`, {
paddingRight: '8px',
});
export const titleIconsWrapper = style({
padding: '0 5px',
width: 34,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
gap: '10px',
});
export const selectionCell = style({

View File

@ -5,10 +5,13 @@ export const root = style({});
export const itemIcon = style({
fontSize: 20,
width: '1em',
height: '1em',
marginRight: 16,
flexShrink: 0,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: cssVar('iconSecondary'),
});