2022-04-28 19:54:33 +03:00
|
|
|
.header {
|
2022-05-17 09:41:39 +03:00
|
|
|
position: sticky;
|
|
|
|
top: 0px;
|
2022-05-08 10:41:47 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2022-07-08 10:10:18 +03:00
|
|
|
z-index: 20;
|
2022-08-30 09:17:12 +03:00
|
|
|
padding: 0.4rem 0.7rem;
|
|
|
|
box-shadow: 0px 1px 3px 1px rgb(0 0 0 / 10%);
|
|
|
|
|
|
|
|
background-color: var(--theme-color-background-header);
|
|
|
|
|
2022-05-08 10:41:47 +03:00
|
|
|
.logo {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
span {
|
2022-08-30 09:17:12 +03:00
|
|
|
color: var(--theme-color-components-text-on-dark);
|
|
|
|
font-family: var(--theme-text-display-font-family);
|
|
|
|
margin-left: 0.5rem;
|
2022-07-08 23:20:22 +03:00
|
|
|
font-size: 1.5rem;
|
2022-05-08 10:41:47 +03:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|
2022-04-28 19:54:33 +03:00
|
|
|
}
|
2022-07-08 23:20:22 +03:00
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.header {
|
|
|
|
line-height: 5vh;
|
|
|
|
height: 5vh;
|
|
|
|
}
|
|
|
|
}
|