h-usersite/angular/src/app/presentation-options/default-option/components/navbar/navbar.component.scss

80 lines
1.3 KiB
SCSS

:host {
width: 100%;
.notification {
img {
width: 28px;
height: 28px;
}
}
}
.container {
max-width: 600px;
margin: 0 auto;
box-sizing: border-box;
padding: 12px 16px;
width: 100%;
background: var(--main-color_2);
display: flex;
flex-direction: column;
gap: 10px;
.block {
display: flex;
align-items: center;
justify-content: space-between;
}
.back {
width: 64px;
}
.back-arrow {
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
color: var(--button-text-color);
}
.plug {
height: 24px;
width: 24px;
visibility: hidden;
}
.title {
font-weight: 700;
font-size: 17px;
line-height: 22px;
margin: 0 auto;
color: var(--button-text-color);
}
.menu {
position: relative;
width: 64px;
.menu__dropdown {
z-index: 110;
position: absolute;
background-color: var(--background-color_1);
width: 250px;
height: fit-content;
right: 20px;
border-radius: 6px;
box-shadow: 0px 2px 5px -3px black;
overflow: hidden;
.item_title {
color: var(--text-color);
font-size: 14px;
font-style: normal;
}
}
}
.backdrop {
z-index: 100;
position: absolute;
width: 100vw;
left: 0;
top: 0;
height: 100vh;
}
}