Catch all subpaths

This commit is contained in:
Gnarwhal 2024-09-16 19:57:33 +00:00
parent 2c2fd045b3
commit 13c9a7140c
Signed by: Gnarwhal
GPG key ID: 0989A73D8C421174
10 changed files with 21 additions and 8 deletions

View file

@ -1,67 +0,0 @@
import { style } from '@vanilla-extract/css';
import * as colors from '../colors.css';
export const root = style({
width: '100%',
height: '100%',
display: 'flex',
justifyContent: 'center',
});
export const center = style({
width: '100%',
height: 'max-content',
padding: '2em',
});
export const title_group = style({
marginBottom: '1em',
width: '100%',
height: '4em',
display: 'flex',
justifyContent: 'space-between'
});
export const title_text_group = style({
flexGrow: 1,
boxSizing: 'border-box',
height: '100%',
borderBottom: `1px solid ${colors.background2}`,
});
export const title = style({
margin: 0,
fontSize: '2em',
});
export const supertitle = style({
margin: 0,
color: colors.foreground2
});
export const download_button = style({
width: 'auto',
height: '100%',
marginLeft: '2em',
border: 0,
padding: 0,
backgroundColor: colors.background2,
color: colors.foreground,
});
export const download_button_image = style({
display: 'block',
width: 'auto',
height: '100%',
});
export const download_text_section = style({
marginLeft: '1em',
});
export const download_text = style({
margin: '0.5em 0',
fontFamily: 'monospace',
fontSize: '1.5em',
});