From 96715b151202febae95eabdb8c89b5f7a508fcee Mon Sep 17 00:00:00 2001 From: bloodwiing Date: Wed, 15 May 2024 18:08:01 +0300 Subject: [PATCH] Fix: Button has inconsistent styling --- static/css/base.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/static/css/base.scss b/static/css/base.scss index 2096b0d..a54555c 100644 --- a/static/css/base.scss +++ b/static/css/base.scss @@ -39,4 +39,24 @@ h1, h2, h3, h4, h5, h6, p, span { button { border: none; font-size: 1rem; + cursor: pointer; + background: none; +} + +button.button { + background: var(--accent-very-dim); + border-radius: 4px; + + &:hover { + background: var(--accent-dim); + } +} + +button.button.transparent { + background: transparent; + border-radius: 4px; + + &:hover { + background: var(--accent-dim); + } }