Updated colours on buttons

This commit is contained in:
Luke Else 2024-02-13 19:05:38 +00:00
parent 0ace3273b4
commit d6244223c4
2 changed files with 4 additions and 2 deletions

View File

@ -170,13 +170,14 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
padding: .5em 1em; padding: .5em 1em;
color: var(--bg); color: var(--bg-grad-1);
font-size: 70%; font-size: 70%;
font-weight: normal;
border-radius: 3px; border-radius: 3px;
} }
.modal-btn:hover, .modal-btn:hover,
.modal-btn:focus { .modal-btn:focus {
background: var(--red); background: var(--red);
color: var(--bg); color: var(--bg-grad-1);
} }

View File

@ -160,4 +160,5 @@
font-size: 1rem; font-size: 1rem;
border: none; border: none;
background-color: gray; background-color: gray;
color: whitesmoke;
} }