mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-02 22:14:43 +01:00
36 lines
583 B
CSS
36 lines
583 B
CSS
.container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 10px 0;
|
|
min-height: 90px;
|
|
margin-bottom: 20px;
|
|
background: var(--base50);
|
|
z-index: var(--z-index-above);
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
}
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
.actions {
|
|
margin-top: 40px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 992px) {
|
|
.sticky {
|
|
position: sticky;
|
|
top: -1px;
|
|
}
|
|
|
|
.isSticky {
|
|
border-bottom: 1px solid var(--base300);
|
|
}
|
|
}
|