From 7152771a486bb788b896613464f635032227f734 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Fri, 5 Jun 2026 13:45:54 +0200 Subject: [PATCH] add button CSS class --- src/styles/common.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/styles/common.css b/src/styles/common.css index 3c1e88b..52f0b3a 100644 --- a/src/styles/common.css +++ b/src/styles/common.css @@ -36,4 +36,18 @@ input { .main-content-padding { padding: var(--main-content-padding); width: calc(100% - var(--main-content-padding-x) * 2); +} + +.button { + background-color: var(--light-bg); + border: none; +} + +.button:focus { + background-color: var(--light-hover); + outline: none; +} + +.button:hover { + background-color: var(--light-hover); } \ No newline at end of file