mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
fix AF-1331
<div class='graphite__hidden'>
<div>🎥 Video uploaded on Graphite:</div>
<a href="https://app.graphite.dev/media/video/T2klNLEk0wxLh4NRDzhk/e09203aa-f143-42f8-bd39-e5078d07ada2.mp4">
<img src="https://app.graphite.dev/api/v1/graphite/video/thumbnail/T2klNLEk0wxLh4NRDzhk/e09203aa-f143-42f8-bd39-e5078d07ada2.mp4">
</a>
</div>
<video src="https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/T2klNLEk0wxLh4NRDzhk/e09203aa-f143-42f8-bd39-e5078d07ada2.mp4">1.mp4</video>
missing
- per split view skeleton
- per route skeleton
40 lines
799 B
TypeScript
40 lines
799 B
TypeScript
import { cssVarV2 } from '@toeverything/theme/v2';
|
|
import { createVar, style } from '@vanilla-extract/css';
|
|
|
|
export const sidebarOffsetVar = createVar();
|
|
|
|
export const root = style({
|
|
width: '100vw',
|
|
height: '100vh',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
background: cssVarV2('layer/background/primary'),
|
|
selectors: {
|
|
'&[data-translucent="true"]': {
|
|
background: 'transparent',
|
|
},
|
|
},
|
|
});
|
|
|
|
export const appTabsHeader = style({
|
|
zIndex: 1,
|
|
});
|
|
|
|
export const fallbackRoot = style({
|
|
position: 'absolute',
|
|
paddingTop: 52,
|
|
width: '100%',
|
|
height: '100%',
|
|
zIndex: 0,
|
|
});
|
|
|
|
export const splitViewFallback = style({
|
|
width: '100%',
|
|
height: '100%',
|
|
position: 'absolute',
|
|
bottom: 0,
|
|
right: 0,
|
|
zIndex: 0,
|
|
background: cssVarV2('layer/background/primary'),
|
|
});
|