metricio/metricio

View on GitHub
src/widgets/progress/styles.scss

Summary

Maintainability
Test Coverage
$progressChartSize: 160px;

.widget__progress {
  background-color: #9c4274;

  .widget__value {
    padding-top: 1.7rem;
    font-size: 3rem;
  }

  .progress {
    position: absolute;
    top: 58px;
    width: $progressChartSize;
    height: $progressChartSize;
    left: calc(50% - #{$progressChartSize / 2});
  }
}