25 lines
452 B
SCSS
25 lines
452 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;
|
|
|
|
.logo-container {
|
|
.logo {
|
|
width: 174px;
|
|
height: 39px;
|
|
}
|
|
}
|
|
|
|
.right-section {
|
|
display: inline-flex;
|
|
>:first-child{
|
|
margin-right: 32px;
|
|
}
|
|
}
|
|
} |