change default style for input

This commit is contained in:
2026-03-31 20:56:39 -04:00
parent 59bc23bdc2
commit 2f6ff081f3
2 changed files with 12 additions and 9 deletions

View File

@@ -38,6 +38,18 @@ button:hover {
background-color: var(--primary-hover);
}
input {
padding: 12px;
background-color: var(--bg-input);
border: 1px solid var(--border-subtle);
color: var(--text-main);
border-radius: 6px;
}
input::placeholder {
color: var(--text-muted);
}
.hidden {
display: none;
}