style.scoped.scss 548 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .queue {
  2. display: flex;
  3. flex-direction: column;
  4. min-height: 100vh;
  5. }
  6. .main {
  7. display: flex;
  8. flex-grow: 1;
  9. }
  10. .content {
  11. display: flex;
  12. justify-content: center;
  13. width: 85%;
  14. .wrapper {
  15. width: 90%;
  16. margin-top: 10px;
  17. }
  18. }
  19. .header {
  20. display: flex;
  21. justify-content: space-between;
  22. align-items: center;
  23. margin-bottom: 40px;
  24. .page-name {
  25. font-size: 54px;
  26. }
  27. }
  28. .tracks-list {
  29. display: flex;
  30. flex-direction: column;
  31. height: 70vh;
  32. overflow-y: scroll;
  33. }