_slide.scss 403 B

123456789101112131415161718192021222324252627
  1. .ui-slide {
  2. position: relative;
  3. height: 100%;
  4. .right,
  5. .left {
  6. position: absolute;
  7. top: 50%;
  8. transform: translateY(-50%);
  9. background-color: rgba(0,0,0,0.3);
  10. width: 30px;
  11. height: 30px;
  12. border-radius: 50%;
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. cursor: pointer;
  17. }
  18. .right {
  19. right: 10px;
  20. }
  21. .left {
  22. left: 10px;
  23. }
  24. }