umami/components/layout/PageHeader.module.css

26 lines
364 B
CSS
Raw Normal View History

2020-08-07 09:24:01 +02:00
.header {
display: flex;
justify-content: space-between;
align-items: center;
2020-08-09 12:04:48 +02:00
align-content: center;
2020-09-27 09:51:29 +02:00
align-self: stretch;
margin-bottom: 40px;
font-size: 18px;
2021-10-27 11:05:39 +02:00
font-weight: bold;
height: 50px;
}
.header a {
color: var(--base600);
}
.header a:hover {
color: var(--base900);
}
.title {
display: flex;
align-items: center;
gap: 20px;
2020-08-07 09:24:01 +02:00
}