umami/components/layout/Header.module.css

31 lines
390 B
CSS

.header {
display: flex;
min-height: 100px;
}
.title {
font-size: var(--font-size-large);
}
.logo {
margin-right: 12px;
}
.nav {
display: flex;
justify-content: flex-end;
align-items: center;
font-size: var(--font-size-normal);
font-weight: 600;
}
.nav > * {
margin-left: 40px;
}
@media only screen and (max-width: 768px) {
.title {
text-align: center;
}
}