base_ui/assets/common/scss/components/_header.scss

35 lines
686 B
SCSS
Raw Normal View History

2025-02-01 09:34:55 +00:00
.header {
padding-right: 60px;
padding-left: 60px;
&__logo {
position: relative;
margin-left: auto;
}
&__search {
width: 600px;
}
&__login {
width: 200px;
margin-right: auto;
}
&__drop-down {
width: 90px;
margin-right: 110px;
margin-right: auto;
display: flex;
position: relative;
justify-content: space-between;
align-items: center;
cursor: pointer;
&:hover {
.drop-down__arrow {
background-color: #f2f2e6;
}
.drop-down__list {
opacity: 1;
visibility: visible;
z-index: 90;
}
}
}
}