components.scss 543 B

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