umami/components/metrics/WebsiteChart.module.css

58 lines
860 B
CSS
Raw Normal View History

2020-07-30 08:25:52 +02:00
.container {
2021-11-22 07:00:14 +01:00
position: relative;
2020-07-30 08:25:52 +02:00
display: flex;
flex-direction: column;
2020-09-27 09:51:29 +02:00
align-self: stretch;
2020-07-30 08:25:52 +02:00
}
2021-11-22 07:00:14 +01:00
.chart {
position: relative;
2023-03-15 07:29:53 +01:00
overflow: hidden;
2021-11-22 07:00:14 +01:00
}
2020-07-30 08:25:52 +02:00
.title {
font-size: var(--font-size-lg);
2020-07-30 08:25:52 +02:00
line-height: 60px;
font-weight: 600;
}
2020-07-30 10:08:21 +02:00
.header {
display: flex;
justify-content: space-between;
align-items: center;
2023-03-22 09:53:34 +01:00
padding: 10px 0;
2023-02-10 12:26:57 +01:00
min-height: 90px;
margin-bottom: 20px;
2023-03-22 09:53:34 +01:00
background: var(--base50);
z-index: var(--z-index-above);
2020-07-30 10:08:21 +02:00
}
2020-08-02 06:20:52 +02:00
.actions {
display: flex;
2023-04-10 05:22:28 +02:00
align-items: center;
flex-direction: row;
justify-content: flex-end;
gap: 10px;
}
.dropdown {
min-width: 200px;
}
2023-04-10 05:22:28 +02:00
@media only screen and (min-width: 992px) {
.sticky {
position: sticky;
top: -1px;
}
.isSticky {
border-bottom: 1px solid var(--base300);
}
}
@media only screen and (max-width: 1200px) {
.actions {
margin-top: 40px;
}
}