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.
13 lines
370 B
13 lines
370 B
$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;
|
|
}
|
|
} |