mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
18 lines
495 B
TypeScript
18 lines
495 B
TypeScript
import { baseTheme } from '@toeverything/theme';
|
|
import { style } from '@vanilla-extract/css';
|
|
|
|
export const multiSelectStyle = style({
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
width: '100%',
|
|
height: '100%',
|
|
padding: '0',
|
|
border: 'none',
|
|
fontFamily: baseTheme.fontSansFamily,
|
|
fontSize: 'var(--data-view-cell-text-size)',
|
|
lineHeight: 'var(--data-view-cell-text-line-height)',
|
|
color: 'var(--affine-text-primary-color)',
|
|
fontWeight: '400',
|
|
backgroundColor: 'transparent',
|
|
});
|