- Added 'curl' and 'wget' commands. TODO: Add feedback when user clicks on them to copy (probably need a not bajillion years outdated Inkscape with icons that aren't completely broken first though :/)
- Fixed some light theme issues
- Fixed some sizing issues on mobile
- Download button actually works now
This commit is contained in:
Gnarwhal 2024-09-17 17:56:10 +01:00
parent 2eac439ba1
commit dfcb95bd0d
Signed by: Gnarwhal
GPG key ID: 80DB5B37E4C96776
9 changed files with 204 additions and 32 deletions

View file

@ -0,0 +1,21 @@
import { style } from '@vanilla-extract/css';
import * as colors from '../colors.css';
export const download_tty = style({
display: 'block',
margin: 0,
border: 'none',
padding: '0',
outline: 'inherit',
fontFamily: 'monospace',
fontSize: '1.1em',
lineHeight: '2em',
background: 'none',
color: 'inherit',
transition: 'color 0.15s',
whiteSpace: 'pre-wrap',
':hover': {
color: colors.accent,
},
});