Files
blog/user/plugins/problems/scss/utilities/_cursors.scss
Loïc Guibert 66dafc36c3 init
2022-09-30 20:02:02 +01:00

25 lines
215 B
SCSS
Executable File

// 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;
}