mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-01 01:29:31 +08:00
1f45cc5dec
**Directory Structure Changes** - Renamed multiple block-related directories by removing the "block-" prefix: - `block-attachment` → `attachment` - `block-bookmark` → `bookmark` - `block-callout` → `callout` - `block-code` → `code` - `block-data-view` → `data-view` - `block-database` → `database` - `block-divider` → `divider` - `block-edgeless-text` → `edgeless-text` - `block-embed` → `embed`
16 lines
434 B
TypeScript
16 lines
434 B
TypeScript
import { cssVar } from '@toeverything/theme';
|
|
import { cssVarV2 } from '@toeverything/theme/v2';
|
|
import { style } from '@vanilla-extract/css';
|
|
|
|
export const outlinePanel = style({
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
backgroundColor: cssVarV2('layer/background/primary'),
|
|
boxSizing: 'border-box',
|
|
width: '100%',
|
|
height: '100%',
|
|
fontFamily: cssVar('fontSansFamily'),
|
|
paddingTop: '8px',
|
|
position: 'relative',
|
|
});
|