Styling changes

This commit is contained in:
Henry Hiles 2023-05-31 16:01:46 -04:00
commit 6716a135eb
7 changed files with 32 additions and 25 deletions

View file

@ -1,17 +1,15 @@
.button {
display: flex;
background: var(--secondary);
border: 2px solid var(--text-primary);
border-radius: 20px;
padding: 20px;
text-decoration: none;
white-space: nowrap;
height: 100%;
color: var(--text-primary);
justify-content: center;
display: flex;
background: var(--secondary);
border-radius: 20px;
padding: 20px;
text-decoration: none;
white-space: nowrap;
height: 100%;
color: var(--text-primary);
justify-content: center;
}
.button:hover {
background: var(--secondary-hover);
color: white;
background: var(--secondary-hover);
}