Chart.less 417 B

12345678910111213141516171819202122232425262728293031323334
  1. .body {
  2. background-color: #0d1a2b;
  3. color: #fff;
  4. height: 100%;
  5. }
  6. .title {
  7. font-size: 20px;
  8. padding: 10px;
  9. }
  10. .listWrapper {
  11. height: 40vh;
  12. overflow-y: auto;
  13. }
  14. .list {
  15. display: flex;
  16. justify-content: center;
  17. flex-wrap: wrap;
  18. }
  19. .listItem {
  20. width: 80%;
  21. text-align: center;
  22. border: 1px solid #fff;
  23. border-radius: 5px;
  24. margin: 5px 0px;
  25. padding: 5px 0px;
  26. }
  27. .chartWrapper{
  28. height: 40vh;
  29. }