feat: single page sharing support (#1805)

Co-authored-by: Himself65 <himself65@outlook.com>
This commit is contained in:
JimmFly
2023-04-12 06:58:11 +08:00
committed by GitHub
parent f3af128baf
commit 2e823c2fee
17 changed files with 652 additions and 31 deletions
@@ -0,0 +1,34 @@
import { style } from '@vanilla-extract/css';
export const tabStyle = style({
display: 'flex',
justifyContent: 'space-around',
alignItems: 'center',
position: 'relative',
marginTop: '4px',
marginLeft: '10px',
marginRight: '10px',
});
export const menuItemStyle = style({
marginLeft: '20px',
marginRight: '20px',
marginTop: '30px',
});
export const descriptionStyle = style({
fontSize: '1rem',
});
export const buttonStyle = style({
marginTop: '18px',
// todo: new color scheme should be used
});
export const actionsStyle = style({
display: 'flex',
gap: '9px',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'start',
});