21 lines
332 B
SCSS
21 lines
332 B
SCSS
|
@use "colors" as c;
|
||
|
|
||
|
@mixin main {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: space-evenly;
|
||
|
|
||
|
min-height: 50px;
|
||
|
background-color: c.$dark;
|
||
|
border-top: c.$accent 0.2vh solid;
|
||
|
|
||
|
margin-top: auto;
|
||
|
margin-block-start: 10px;
|
||
|
|
||
|
padding-top: 10px;
|
||
|
|
||
|
div {
|
||
|
text-align: center;
|
||
|
}
|
||
|
}
|