mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 15:17:23 +01:00
40 lines
669 B
CSS
40 lines
669 B
CSS
.container {
|
|
display: grid;
|
|
grid-template-columns: 1fr max-content;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background: var(--base50);
|
|
z-index: var(--z-index-above);
|
|
min-height: 120px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
}
|
|
|
|
@media screen and (max-width: 1200px) {
|
|
.container {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.actions {
|
|
margin: 20px 0;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
.sticky {
|
|
position: sticky;
|
|
top: -1px;
|
|
}
|
|
|
|
.isSticky {
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid var(--base300);
|
|
}
|
|
}
|