aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/_charts/line-chart/line-chart.component.css
blob: 60b341d03041493031fc5b394f4e446513c5919b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.canvas-container {
    height: 50%;
    margin: 5px;
}

.bottom {
    height: 30px;
}

canvas {
    max-height: 100%;
    border: 1px solid var(--ns-primary);
    background-color: var(--ns-bg-dark-100);
    border-radius: 5px;
    margin: 0;
    font-size: 11 !important;
    padding: 0;
}

.ns-col {
    margin: 5px;
}

.hide {
    display: none !important;
    background-color: red;
}

.dl-button {
    position: relative;
    color: var(--offwhite);
    border-radius: 4px;
    border: 1px solid var(--ns-primary);
    background-color: var(--ns-bg-dark-50);
    margin: 5px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.dl-button:hover {
    background-color: var(--ns-primary);
}