From 3ea55d24dc77fc52d2f6cd6f05f5e76d9572e3f1 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 976816a..efb68fb 100644 --- a/src/styles/common.css +++ b/src/styles/common.css @@ -34,4 +34,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