components.scss 436 B

1234567891011121314151617181920212223242526
  1. @use "./colors.scss" as *;
  2. .simple-carousel2-left-right {
  3. display: flex;
  4. flex-direction: row;
  5. align-items: center;
  6. justify-content: space-between;
  7. width: 100px;
  8. margin-top: 40px;
  9. div {
  10. width: 30px;
  11. height: 30px;
  12. font-size: 25px;
  13. text-align: center;
  14. line-height: 30px;
  15. cursor: pointer;
  16. -webkit-user-select: none;
  17. user-select: none;
  18. color: $primary-color;
  19. }
  20. }
  21. .left-right-grid {
  22. }