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;
|
2022-12-10 23:26:52 +01:00
|
|
|
padding-bottom: 20px;
|
2021-11-22 07:00:14 +01:00
|
|
|
}
|
|
|
|
|
2020-07-30 08:25:52 +02:00
|
|
|
.title {
|
2022-12-10 23:26:52 +01:00
|
|
|
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 {
|
2020-08-10 00:13:38 +02:00
|
|
|
min-height: 90px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.metrics {
|
|
|
|
position: relative;
|
2020-07-30 10:08:21 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2020-08-04 03:12:28 +02:00
|
|
|
padding: 10px 0;
|
2020-07-30 10:08:21 +02:00
|
|
|
}
|
2020-08-02 06:20:52 +02:00
|
|
|
|
|
|
|
.sticky {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
margin: auto;
|
2022-12-09 08:43:43 +01:00
|
|
|
background: var(--base50);
|
|
|
|
border-bottom: 1px solid var(--base300);
|
2020-08-10 00:13:38 +02:00
|
|
|
z-index: 3;
|
2020-08-02 06:20:52 +02:00
|
|
|
}
|
2020-09-13 20:33:57 +02:00
|
|
|
|
|
|
|
.filter {
|
2022-12-10 23:26:52 +01:00
|
|
|
align-self: center;
|
2020-09-13 20:33:57 +02:00
|
|
|
}
|