owncast/web/components/ui/Header/Header.module.scss

20 lines
350 B
SCSS
Raw Normal View History

.header {
position: sticky;
top: 0px;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 1;
2022-05-12 09:31:31 +03:00
padding: 0.5rem 1rem;
background-color: var(--default-bg-color);
.logo {
display: flex;
align-items: center;
span {
margin-left: 1rem;
font-size: 1.7rem;
font-weight: 600;
}
}
}