8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | );
19 | }
20 |
--------------------------------------------------------------------------------
/apps/codeimage/src/components/Toolbar/ExportContent.css.ts:
--------------------------------------------------------------------------------
1 | import {style} from '@vanilla-extract/css';
2 |
3 | export const exportContent = style({
4 | width: '240px',
5 | });
6 |
7 | export const exportContentPopover = style({
8 | maxWidth: 'unset',
9 | });
10 |
--------------------------------------------------------------------------------
/apps/codeimage/src/components/Toolbar/SettingsDialog.css.ts:
--------------------------------------------------------------------------------
1 | import {themeVars} from '@codeimage/ui';
2 | import {style} from '@vanilla-extract/css';
3 |
4 | export const dialogLeftPanel = style({
5 | flex: '0 0 20%',
6 | borderRight: `1px solid ${themeVars.dynamicColors.dialog.titleBorderColor}`,
7 | display: 'flex',
8 | flexDirection: 'column',
9 | gap: themeVars.spacing['3'],
10 | marginRight: themeVars.spacing['12'],
11 | });
12 |
13 | export const dialogContent = style({
14 | flex: 1,
15 | width: '100%',
16 | minWidth: '0px',
17 | '@media': {
18 | 'screen and (max-width: 768px)': {
19 | width: '80vw',
20 | },
21 | },
22 | });
23 |
--------------------------------------------------------------------------------
/apps/codeimage/src/components/UserBadge/UserBadge.css.ts:
--------------------------------------------------------------------------------
1 | import {themeVars} from '@codeimage/ui';
2 | import {style} from '@vanilla-extract/css';
3 |
4 | export const badge = style({
5 | backgroundColor: themeVars.backgroundColor.blue['600'],
6 | color: themeVars.backgroundColor.white,
7 | overflow: 'hidden',
8 | position: 'relative',
9 | cursor: 'pointer',
10 | });
11 |
12 | export const badgePicture = style({
13 | width: '100%',
14 | position: 'absolute',
15 | height: '100%',
16 | });
17 |
--------------------------------------------------------------------------------
/apps/codeimage/src/core/constants/identity.ts:
--------------------------------------------------------------------------------
1 | export function identity