mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
36 lines
1.1 KiB
SCSS
36 lines
1.1 KiB
SCSS
// Interactivity utility classes
|
|
|
|
.cursor-pointer { cursor: pointer }
|
|
.cursor-default { cursor: default }
|
|
.cursor-not-allowed { cursor: not-allowed }
|
|
.cursor-wait { cursor: wait }
|
|
.cursor-text { cursor: text }
|
|
.cursor-move { cursor: move }
|
|
.cursor-grab { cursor: grab }
|
|
.cursor-grabbing { cursor: grabbing }
|
|
|
|
.pointer-events-none { pointer-events: none }
|
|
.pointer-events-auto { pointer-events: auto }
|
|
|
|
.select-none { user-select: none }
|
|
.select-text { user-select: text }
|
|
.select-all { user-select: all }
|
|
.select-auto { user-select: auto }
|
|
|
|
.resize-none { resize: none }
|
|
.resize { resize: both }
|
|
.resize-x { resize: horizontal }
|
|
.resize-y { resize: vertical }
|
|
|
|
.outline-none { outline: 2px solid transparent; outline-offset: 2px }
|
|
.outline { outline-style: solid }
|
|
.outline-dashed { outline-style: dashed }
|
|
.outline-dotted { outline-style: dotted }
|
|
.outline-offset-2 { outline-offset: 2px }
|
|
.outline-offset-4 { outline-offset: 4px }
|
|
|
|
.touch-none { touch-action: none }
|
|
.touch-manipulation { touch-action: manipulation }
|
|
.scroll-smooth { scroll-behavior: smooth }
|
|
.appearance-none { appearance: none }
|