Blame view

src/components/chart/chart.component.scss 456 Bytes
c680f5b4   Administrator   first commit
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
  .chart-container {
      display: inline-block;
      position: relative;
      width: 95%;
      padding-bottom: 55%;
      vertical-align: top;
      overflow: hidden;
  }
  .chart {
      display: inline-block;
      position: absolute;
      top: 0;
      left: 0;
      right: 20px;
      .bar-1 {
          fill: #EF6C00;
      }
      .bar-2 {
          fill: #009688;
      }
      text {
          fill: rgba(0, 0, 0, 0.54);
          font: 10px sans-serif;
          text-anchor: end;
      }
  }