umami/components/pages/websites/WebsiteMetricsBar.module.css

36 lines
583 B
CSS
Raw Normal View History

2020-07-30 06:25:52 +00:00
.container {
2020-07-30 08:08:21 +00:00
display: flex;
justify-content: space-between;
align-items: center;
2023-03-22 08:53:34 +00:00
padding: 10px 0;
2023-02-10 11:26:57 +00:00
min-height: 90px;
margin-bottom: 20px;
2023-03-22 08:53:34 +00:00
background: var(--base50);
z-index: var(--z-index-above);
2020-07-30 08:08:21 +00:00
}
2020-08-02 04:20:52 +00:00
.actions {
display: flex;
2023-04-10 03:22:28 +00:00
align-items: center;
flex-direction: row;
justify-content: flex-end;
gap: 10px;
}
@media only screen and (max-width: 1200px) {
.actions {
margin-top: 40px;
}
}
2023-04-10 03:22:28 +00:00
@media only screen and (min-width: 992px) {
.sticky {
position: sticky;
top: -1px;
}
.isSticky {
border-bottom: 1px solid var(--base300);
}
}