.menu -> common.css; 1rem for buttons, 0.9rem for /get menu

This commit is contained in:
DarkCat09 2023-09-20 13:26:10 +04:00
parent d65c34e848
commit 2245e73c7f
No known key found for this signature in database
GPG Key ID: 0A26CD5B3345D6E3
3 changed files with 12 additions and 5 deletions

View File

@ -45,6 +45,12 @@ main {
margin: auto;
}
.menu {
display: flex;
flex-direction: row;
column-gap: 0.25rem;
}
.button {
padding: 0.25rem 0.75rem;
@ -54,6 +60,7 @@ main {
background: var(--bg);
color: var(--fg);
text-decoration: none;
font-size: 1rem;
cursor: pointer;
}

View File

@ -1,8 +1,4 @@
.menu {
display: flex;
flex-direction: row;
column-gap: 0.25rem;
.menu .button {
font-size: 0.9rem;
}

View File

@ -16,3 +16,7 @@ h1 > .dot {
h1 > .dot-err {
color: var(--error);
}
.menu {
justify-content: center;
}