Changes
- 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:
parent
2eac439ba1
commit
a0360445e1
1 changed files with 9 additions and 4 deletions
|
@ -46,14 +46,19 @@ export const download_button = style({
|
|||
marginLeft: '2em',
|
||||
border: 0,
|
||||
padding: 0,
|
||||
backgroundColor: colors.background2,
|
||||
border: `1px solid ${colors.background2}`,
|
||||
backgroundColor: colors.background,
|
||||
color: colors.foreground,
|
||||
});
|
||||
|
||||
export const download_button_image = style({
|
||||
display: 'block',
|
||||
width: 'auto',
|
||||
height: '100%',
|
||||
display: 'block',
|
||||
width: 'auto',
|
||||
height: '100%',
|
||||
transition: 'background-color 0.35s',
|
||||
':hover': {
|
||||
backgroundColor: colors.background2,
|
||||
},
|
||||
});
|
||||
|
||||
export const download_text_section = style({
|
||||
|
|
Loading…
Reference in a new issue