mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-28 12:19:27 +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`
25 lines
571 B
TypeScript
25 lines
571 B
TypeScript
import { cssVar } from '@toeverything/theme';
|
|
import { cssVarV2 } from '@toeverything/theme/v2';
|
|
import { style } from '@vanilla-extract/css';
|
|
|
|
export const viewInPageNotifyFooter = style({
|
|
display: 'flex',
|
|
justifyContent: 'flex-end',
|
|
gap: '12px',
|
|
});
|
|
|
|
export const viewInPageNotifyFooterButton = style({
|
|
padding: '0px 6px',
|
|
borderRadius: '4px',
|
|
color: cssVarV2('text/primary'),
|
|
|
|
fontSize: cssVar('fontSm'),
|
|
lineHeight: '22px',
|
|
fontWeight: '500',
|
|
textAlign: 'center',
|
|
|
|
':hover': {
|
|
background: cssVarV2('layer/background/hoverOverlay'),
|
|
},
|
|
});
|