umami/components/layout/PageHeader.module.css

47 lines
622 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;
2023-04-10 05:22:28 +02:00
flex-wrap: wrap;
}
.header a {
color: var(--base600);
}
.header a:hover {
color: var(--base900);
}
.title {
display: flex;
align-items: center;
2023-02-15 11:27:18 +01:00
font-size: 24px;
font-weight: 700;
gap: 20px;
2023-04-13 02:43:08 +02:00
height: 60px;
2023-04-10 05:22:28 +02:00
}
2023-04-12 22:40:19 +02:00
.actions {
display: flex;
justify-content: flex-end;
}
@media only screen and (max-width: 992px) {
.header {
margin-bottom: 10px;
}
.title {
font-size: 18px;
}
.actions {
flex-basis: 100%;
order: -1;
}
2020-08-07 09:24:01 +02:00
}