diff --git a/src/app/[...file]/page.css.ts b/src/app/[...file]/page.css.ts index dca9e75..25d37e4 100644 --- a/src/app/[...file]/page.css.ts +++ b/src/app/[...file]/page.css.ts @@ -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({