fix bottom padding

This commit is contained in:
lukasIO 2023-03-13 19:31:05 +01:00
parent 784f19ae3b
commit 4259a92356
2 changed files with 7 additions and 10 deletions

View file

@ -4,6 +4,7 @@
justify-content: center; justify-content: center;
place-content: center; place-content: center;
justify-items: center; justify-items: center;
padding-bottom: 100px;
} }
.tabContainer { .tabContainer {
@ -15,11 +16,11 @@
.tabSelect { .tabSelect {
display: flex; display: flex;
justify-content: stretch; justify-content: stretch;
gap: .125rem; gap: 0.125rem;
padding: .125rem; padding: 0.125rem;
margin: 0 auto 1.5rem; margin: 0 auto 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: .5rem; border-radius: 0.5rem;
} }
.tabSelect > * { .tabSelect > * {
@ -30,8 +31,8 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
flex-direction: column; flex-direction: column;
gap: .75rem; gap: 0.75rem;
padding: 1.5rem; padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: .5rem; border-radius: 0.5rem;
} }

View file

@ -14,10 +14,6 @@ main {
height: 100%; height: 100%;
} }
main {
padding-bottom: 100px;
}
.header { .header {
max-width: 500px; max-width: 500px;
padding-inline: 2rem; padding-inline: 2rem;
@ -47,7 +43,7 @@ footer {
text-align: center; text-align: center;
color: rgba(255, 255, 255, 0.6); color: rgba(255, 255, 255, 0.6);
background-color: var(--lk-bg); background-color: var(--lk-bg);
border-top: 1px solid rgba(255, 255, 255, .15); border-top: 1px solid rgba(255, 255, 255, 0.15);
} }
footer a { footer a {