Files
menui_web/src/styles/TopBar.scss
2021-02-04 20:25:07 +01:00

83 lines
1.2 KiB
SCSS

@import "../Design.scss";
.topBar {
width: 100%;
display: flex;
justify-content: space-between;
background-color: $main-color;
position: sticky;
z-index: 3;
}
.topBarLogo {
height: 2.4rem;
margin: 12px;
margin-left: 16px;
cursor: pointer;
&:hover {
opacity: 0.5;
}
}
.topBar-logo-container {
margin: 0;
display: flex;
h5 {
color: $bg-color;
font-weight: 300;
font-size: 1rem;
margin-left: 20px;
margin-top: auto;
margin-bottom: auto;
}
}
.topBar-hamburger {
margin-right: 20px;
margin-top: auto;
margin-bottom: auto;
display: flex;
}
.topbar-username {
color: rgb(221, 221, 221);
margin-right: 16px;
padding-top: 2px;
}
.drawer-bottom {
width: 100%;
margin-bottom: 20px;
display: flex;
justify-content: center;
flex-direction: column;
position: absolute;
bottom: 0;
}
.drawer-buttons {
margin-left: auto;
margin-right: auto;
}
.social-container {
width: 100%;
margin-bottom: 20px;
margin-top: 20px;
display: flex;
justify-content: center;
}
@media (max-width: 768px) {
.topBar-hamburger {
display: none;
}
}
@media (max-height: 600px) {
.topBar-hamburger {
display: none;
}
}