Arnaud D. Natali 9bb5241f46
add burger menu & navigation links (#6)
solve this ticket :
https://app.ora.pm/p/fb56ed95daa7456b888d266a050b9afa?v=86662&s=28293&t=k&c=657791f3b1c64e6cbbf22f9378c0bdae

Co-authored-by: OxSaitama <arnaud.daubernatali@smart-chain.fr>
2023-02-28 10:06:41 +01:00

51 lines
733 B
SCSS

@import "@Themes/constants.scss";
.root {
display: flex;
align-items: center;
justify-content: space-between;
height: 83px;
background-color: $white;
box-shadow: $shadow-nav;
padding: 0 48px;
position: relative;
.logo-container {
.logo {
width: 174px;
height: 39px;
}
}
.right-section {
.profile-section {
display: inline-flex;
> :first-child {
margin-right: 32px;
}
@media (max-width: $screen-ls) {
display: none;
}
}
.notification-section {
display: inline-flex;
> :first-child {
margin-right: 32px;
}
}
}
.burger-menu {
display: none;
@media (max-width: $screen-ls) {
display: inline-flex;
.icon {
width: 24px;
height: 24px;
}
}
}
}