umami/components/layout/PageHeader.module.css
2023-01-30 21:44:07 -08:00

26 lines
364 B
CSS

.header {
display: flex;
justify-content: space-between;
align-items: center;
align-content: center;
align-self: stretch;
margin-bottom: 40px;
height: 50px;
}
.header a {
color: var(--base600);
}
.header a:hover {
color: var(--base900);
}
.title {
display: flex;
align-items: center;
font-size: 18px;
font-weight: bold;
gap: 20px;
}