- 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
This commit is contained in:
Gnarwhal 2024-09-17 17:56:10 +01:00
parent 2eac439ba1
commit a0360445e1
Signed by: Gnarwhal
GPG key ID: 80DB5B37E4C96776

View file

@ -46,7 +46,8 @@ export const download_button = style({
marginLeft: '2em', marginLeft: '2em',
border: 0, border: 0,
padding: 0, padding: 0,
backgroundColor: colors.background2, border: `1px solid ${colors.background2}`,
backgroundColor: colors.background,
color: colors.foreground, color: colors.foreground,
}); });
@ -54,6 +55,10 @@ export const download_button_image = style({
display: 'block', display: 'block',
width: 'auto', width: 'auto',
height: '100%', height: '100%',
transition: 'background-color 0.35s',
':hover': {
backgroundColor: colors.background2,
},
}); });
export const download_text_section = style({ export const download_text_section = style({