mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
47 lines
622 B
CSS
47 lines
622 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;
|
|
height: 60px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|