index.scss 543 B

1234567891011121314151617181920212223242526272829303132333435
  1. @import "src/assets/styles";
  2. .grid-content {
  3. height: 38vh;
  4. display: flex;
  5. background: $bg-color;
  6. width: 100%;
  7. flex-direction: column;
  8. align-items: center;
  9. justify-content: flex-start;
  10. > div {
  11. width: 100%;
  12. }
  13. .grid-title {
  14. font-weight: bolder;
  15. font-size: 24px;
  16. box-sizing: border-box;
  17. padding: 10px;
  18. }
  19. .filters {
  20. box-sizing: border-box;
  21. padding: 0 10px;
  22. display: flex;
  23. align-items: center;
  24. justify-content: flex-end;
  25. }
  26. .grid-chart {
  27. height: calc(100% - 100px);
  28. }
  29. }