22 lines
335 B
SCSS
22 lines
335 B
SCSS
|
@use "colors" as c;
|
||
|
|
||
|
@mixin main {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: left;
|
||
|
|
||
|
padding: 0px 10px;
|
||
|
min-height: 60px;
|
||
|
|
||
|
background-color: c.$bg;
|
||
|
border-bottom: c.$accent 0.2vh solid;
|
||
|
|
||
|
user-select: none;
|
||
|
|
||
|
#hlogo>img {
|
||
|
max-height: 45px;
|
||
|
max-width: 200px;
|
||
|
margin-top:5px;
|
||
|
padding:auto;
|
||
|
}
|
||
|
}
|