BlazorStart/Start/Client/Sass/Spectre/utilities/_cursors.scss

24 lines
214 B
SCSS
Raw Normal View History

2021-12-09 05:59:43 +00:00
// Cursors
.c-hand {
cursor: pointer;
}
.c-move {
cursor: move;
}
.c-zoom-in {
cursor: zoom-in;
}
.c-zoom-out {
cursor: zoom-out;
}
.c-not-allowed {
cursor: not-allowed;
}
.c-auto {
cursor: auto;
}