change default style for buttons

This commit is contained in:
2026-03-31 20:53:08 -04:00
parent efd7d15722
commit e2f4a0692c
2 changed files with 14 additions and 14 deletions

View File

@@ -24,6 +24,20 @@ body {
background-color: var(--bg-main);
}
button {
padding: 12px;
background-color: var(--primary-accent); /* Our Teal/Blue */
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
}
button:hover {
background-color: var(--primary-hover);
}
.hidden {
display: none;
}