umami/components/layout/PageHeader.module.css
2023-04-09 20:22:28 -07:00

32 lines
439 B
CSS

.header {
display: flex;
justify-content: space-between;
align-items: center;
align-content: center;
align-self: stretch;
margin-bottom: 40px;
flex-wrap: wrap;
}
.header a {
color: var(--base600);
}
.header a:hover {
color: var(--base900);
}
.title {
display: flex;
align-items: center;
font-size: 24px;
font-weight: 700;
gap: 20px;
line-height: 50px;
}
.xs .actions,
.sm .actions {
flex-basis: 100%;
}