Files
wunix.rhpidfyre.io/src/scss/elements/footer.scss
2025-02-23 14:08:21 -05:00

27 lines
504 B
SCSS

@use "../variables.scss";
@mixin styling {
display: flex;
justify-content: space-between;
align-items: center;
width: 100vw;
height: variables.$footer-Y;
background-color: var(--body-background-color)
p { padding: 0 20px 0 20px; }
section {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
button {
height: 100%;
padding: 0 20px 0 20px;
&:hover { background-color: rgb(255,255,255) }
}
}
#toggle-term-mode { background-color: rgb(0,50,90) }
}