Restyle button box to remove text from buttons

This commit is contained in:
sepia 2025-07-27 19:51:35 -05:00
parent 79ae2c5d2b
commit 3f6ecb84fc
2 changed files with 23 additions and 18 deletions

View file

@ -208,7 +208,8 @@ body {
justify-content: center;
align-items: center;
transition: opacity 0.3s ease;
padding: 8px 15px;
padding: 15px 8px;
margin: 0px 6px;
border-radius: 5px;
white-space: nowrap;
border: none;
@ -220,13 +221,18 @@ body {
#button-box {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
flex-direction: column;
justify-content: center;
gap: 10px;
margin-top: 20px;
}
#button-box-buttons {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
#resign-button {
background-color: var(--color-primary);
color: var(--color-on-primary);