You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
743 B
SCSS
46 lines
743 B
SCSS
9 years ago
|
/* Footer
|
||
|
========================================================================== */
|
||
|
svg.chart {
|
||
|
// Avoids that the chart grows because of the gap left by inline elements.
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.line-chart-wrapper {
|
||
|
min-height: 10rem;
|
||
|
}
|
||
|
|
||
|
.line-chart {
|
||
|
.data-line {
|
||
|
stroke: #fff;
|
||
|
stroke-width: 2px;
|
||
|
fill: none;
|
||
|
}
|
||
|
|
||
|
.edge {
|
||
|
font-size: 0.75rem;
|
||
|
fill: rgba(#fff, 0.8);
|
||
|
}
|
||
|
|
||
|
.days {
|
||
|
font-size: 0.75rem;
|
||
|
fill: rgba(#fff, 0.8);
|
||
|
}
|
||
|
|
||
|
.x.axis text {
|
||
|
font-size: 0.75rem;
|
||
|
fill: rgba(#fff, 0.8);
|
||
|
}
|
||
|
|
||
|
.y.axis {
|
||
|
.line {
|
||
|
stroke: rgba(#fff, 0.8);
|
||
|
stroke-dasharray: 4 4;
|
||
|
}
|
||
|
.label {
|
||
|
@extend .antialiased;
|
||
|
fill: rgba(#fff, 0.8);
|
||
|
font-size: 0.75rem;
|
||
|
}
|
||
|
}
|
||
|
}
|