Skip to content

Commit

Permalink
fix(core): emoji doc name rendering on windows (#8857)
Browse files Browse the repository at this point in the history
  • Loading branch information
pengx17 authored Nov 18, 2024
1 parent abaea9e commit 56a3f05
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
});

Expand Down

0 comments on commit 56a3f05

Please sign in to comment.