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

@@ -31,16 +31,6 @@
color: var(--text-muted);
}
#login_card button {
padding: 12px;
background-color: var(--primary-accent); /* Our Teal/Blue */
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
}
#login_card div {
width: 100%;
}
@@ -59,10 +49,6 @@
flex: 2;
}
#login_card button:hover {
background-color: var(--primary-hover);
}
.login_text {
color: var(--text-muted);
margin: 0;

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;
}