mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-27 02:42:25 +08:00
fix(core): emoji doc name rendering on windows (#8857)
This commit is contained in:
@@ -74,7 +74,7 @@ globalStyle(`${root} > :last-child`, {
|
|||||||
paddingRight: '8px',
|
paddingRight: '8px',
|
||||||
});
|
});
|
||||||
export const titleIconsWrapper = style({
|
export const titleIconsWrapper = style({
|
||||||
padding: '0 5px',
|
width: 34,
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
gap: '10px',
|
gap: '10px',
|
||||||
@@ -119,6 +119,8 @@ export const iconCell = style({
|
|||||||
fontSize: cssVar('fontH3'),
|
fontSize: cssVar('fontH3'),
|
||||||
color: cssVar('iconColor'),
|
color: cssVar('iconColor'),
|
||||||
flexShrink: 0,
|
flexShrink: 0,
|
||||||
|
width: 24,
|
||||||
|
height: 24,
|
||||||
});
|
});
|
||||||
export const tagsCell = style({
|
export const tagsCell = style({
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
|
|||||||
@@ -72,9 +72,10 @@ globalStyle(`${root} > :last-child`, {
|
|||||||
paddingRight: '8px',
|
paddingRight: '8px',
|
||||||
});
|
});
|
||||||
export const titleIconsWrapper = style({
|
export const titleIconsWrapper = style({
|
||||||
padding: '0 5px',
|
width: 34,
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
|
justifyContent: 'center',
|
||||||
gap: '10px',
|
gap: '10px',
|
||||||
});
|
});
|
||||||
export const selectionCell = style({
|
export const selectionCell = style({
|
||||||
|
|||||||
@@ -5,10 +5,13 @@ export const root = style({});
|
|||||||
|
|
||||||
export const itemIcon = style({
|
export const itemIcon = style({
|
||||||
fontSize: 20,
|
fontSize: 20,
|
||||||
|
width: '1em',
|
||||||
|
height: '1em',
|
||||||
marginRight: 16,
|
marginRight: 16,
|
||||||
flexShrink: 0,
|
flexShrink: 0,
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
|
justifyContent: 'center',
|
||||||
color: cssVar('iconSecondary'),
|
color: cssVar('iconSecondary'),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user