2020-07-30 06:25:52 +00:00
|
|
|
.container {
|
2021-11-22 06:00:14 +00:00
|
|
|
position: relative;
|
2020-07-30 06:25:52 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2020-09-27 07:51:29 +00:00
|
|
|
align-self: stretch;
|
2020-07-30 06:25:52 +00:00
|
|
|
}
|
|
|
|
|
|
2021-11-22 06:00:14 +00:00
|
|
|
.chart {
|
|
|
|
|
position: relative;
|
2023-03-15 06:29:53 +00:00
|
|
|
overflow: hidden;
|
2021-11-22 06:00:14 +00:00
|
|
|
}
|
|
|
|
|
|
2020-07-30 06:25:52 +00:00
|
|
|
.title {
|
2022-12-13 03:45:38 +00:00
|
|
|
font-size: var(--font-size-lg);
|
2020-07-30 06:25:52 +00:00
|
|
|
line-height: 60px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
2020-07-30 08:08:21 +00:00
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
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);
|
2020-07-30 08:08:21 +00:00
|
|
|
}
|
2020-08-02 04:20:52 +00:00
|
|
|
|
|
|
|
|
.sticky {
|
2023-03-22 08:53:34 +00:00
|
|
|
position: sticky;
|
|
|
|
|
top: -1px;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.isSticky {
|
2022-12-13 03:45:38 +00:00
|
|
|
border-bottom: 1px solid var(--base300);
|
2020-08-02 04:20:52 +00:00
|
|
|
}
|
2020-09-13 18:33:57 +00:00
|
|
|
|
2023-02-15 01:23:20 +00:00
|
|
|
.actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
|
min-width: 200px;
|
2020-09-13 18:33:57 +00:00
|
|
|
}
|