Second Commit
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

30 行
454 B

  1. // Area Chart
  2. .chart-area {
  3. position: relative;
  4. height: 10rem;
  5. width: 100%;
  6. @include media-breakpoint-up(md) {
  7. height: 20rem;
  8. }
  9. }
  10. // Bar Chart
  11. .chart-bar {
  12. position: relative;
  13. height: 10rem;
  14. width: 100%;
  15. @include media-breakpoint-up(md) {
  16. height: 20rem;
  17. }
  18. }
  19. // Pie Chart
  20. .chart-pie {
  21. position: relative;
  22. height: 15rem;
  23. width: 100%;
  24. @include media-breakpoint-up(md) {
  25. height: calc(20rem - 43px) !important;
  26. }
  27. }