12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .chart {
- display: block;
- min-height: 10rem;
- text {
- font-family: inherit;
- }
- }
- .chart-sm {
- height: 2.5rem;
- }
- .chart-lg {
- height: 15rem;
- }
- .chart-square {
- height: 5.75rem;
- }
- /**
- Chart sparkline
- */
- .chart-sparkline {
- position: relative;
- width: 4rem;
- height: 2.5rem;
- line-height: 1;
- min-height: 0 !important;
- }
- .chart-sparkline-sm {
- height: 1.5rem;
- }
- .chart-sparkline-square {
- width: 2.5rem;
- }
- .chart-sparkline-wide {
- width: 6rem;
- }
- .chart-sparkline-label {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: $h6-font-size;
- .icon {
- width: 1rem;
- height: 1rem;
- font-size: 1rem;
- }
- }
|