70 lines
1.0 KiB
SCSS
70 lines
1.0 KiB
SCSS
@import "../Design.scss";
|
|
|
|
.topBar {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
background-color: $main-color;
|
|
position: fixed;
|
|
z-index: 1;
|
|
}
|
|
|
|
.topBarLogo {
|
|
height: 2.4rem;
|
|
margin: 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;
|
|
}
|