umami/components/layout/PageHeader.module.css

32 lines
439 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-10 05:22:28 +02:00
line-height: 50px;
}
.xs .actions,
.sm .actions {
flex-basis: 100%;
2020-08-07 09:24:01 +02:00
}