refactor(settings): move settings button style into a CSS module

This commit is contained in:
2026-07-28 20:08:37 +02:00
committed by jakob.scheid
parent 12d8c4fa23
commit 4b6881808d
2 changed files with 21 additions and 21 deletions
@@ -0,0 +1,19 @@
.settings-button {
--padding-x: 0.7em;
padding: 0.3em var(--padding-x);
margin-top: 0.2em;
width: calc(100% - 2 * var(--padding-x));
border-radius: 0.8em;
display: inline-flex;
align-items: center;
gap: 0.5em;
cursor: pointer;
background-color: var(--light-bg);
user-select: none;
-moz-user-select: none;
}
.settings-button:hover {
background-color: var(--light-hover);
}