You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Components/Styles/utilities/interactivity/_cursor.scss

13 lines
370 B

2 years ago
$cursors: (
auto, default, pointer, wait, text, move, help,
not-allowed, none, progress, cell, crosshair,
vertical-text, alias, copy, no-drop, grab, grabbing,
all-scroll, col-resize, row-resize, n-resize, w-resize,
zoom-in, zoom-out, url
);
@each $value in $cursors {
.cursor-#{$value} {
cursor: $value !important;
}
}