umami/components/layout/PageHeader.module.css

26 lines
364 B
CSS
Raw Normal View History

2020-08-07 07:24:01 +00:00
.header {
display: flex;
justify-content: space-between;
align-items: center;
2020-08-09 10:04:48 +00:00
align-content: center;
2020-09-27 07:51:29 +00:00
align-self: stretch;
margin-bottom: 40px;
font-size: 18px;
2021-10-27 09:05:39 +00: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 07:24:01 +00:00
}