umami/components/Header.module.css

26 lines
316 B
CSS
Raw Normal View History

2020-08-05 07:45:05 +02:00
.header {
display: flex;
height: 80px;
}
.header > div {
flex: 1;
}
.title {
2020-08-06 04:04:02 +02:00
font-size: var(--font-size-large);
2020-08-05 07:45:05 +02:00
}
.nav {
list-style: none;
display: flex;
justify-content: flex-end;
align-items: center;
}
.nav > * {
2020-08-06 04:04:02 +02:00
font-size: var(--font-size-normal);
2020-08-05 07:45:05 +02:00
font-weight: 600;
margin-left: 40px;
}