refactor styles

This commit is contained in:
2025-11-10 11:30:16 +01:00
parent b4a1821a55
commit 585caaee58
31 changed files with 4873 additions and 4867 deletions
+29
View File
@@ -0,0 +1,29 @@
select {
font: inherit;
border-radius: 2px;
border: 1px solid var(--border);
padding: 0.4rem 0.5rem;
background: var(--surface);
color: inherit;
width: 100%;
box-sizing: border-box;
}
input:focus,
textarea:focus,
select:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 2px var(--accent-soft);
background: var(--surface);
}
textarea {
resize: vertical;
}
form.inline {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}