mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-20 19:46:32 +08:00
33 lines
620 B
TypeScript
33 lines
620 B
TypeScript
import { style } from '@vanilla-extract/css';
|
|
|
|
export const waterMarkStyle = style({
|
|
display: 'none',
|
|
'@media': {
|
|
print: {
|
|
position: 'fixed',
|
|
bottom: '0',
|
|
right: '20px',
|
|
zIndex: 100,
|
|
display: 'block',
|
|
width: 'auto',
|
|
filter: 'opacity(20%)',
|
|
},
|
|
},
|
|
});
|
|
|
|
export const linkStyle = style({
|
|
textAlign: 'left',
|
|
color: 'black',
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
justifyContent: 'flex-end',
|
|
alignItems: 'center',
|
|
width: '200px',
|
|
});
|
|
export const linkTextStyle = style({
|
|
whiteSpace: 'nowrap',
|
|
});
|
|
export const iconStyle = style({
|
|
fontSize: '20px',
|
|
});
|