_cursors.scss 214 B

123456789101112131415161718192021222324
  1. // Cursors
  2. .c-hand {
  3. cursor: pointer;
  4. }
  5. .c-move {
  6. cursor: move;
  7. }
  8. .c-zoom-in {
  9. cursor: zoom-in;
  10. }
  11. .c-zoom-out {
  12. cursor: zoom-out;
  13. }
  14. .c-not-allowed {
  15. cursor: not-allowed;
  16. }
  17. .c-auto {
  18. cursor: auto;
  19. }