fix: not allow selecting texts that shouldn't be selectable (#8864)

Added CSS to apply select none to cursor pointer, default, not-allowed, label and buton
This commit is contained in:
Lucas Oliveira 2025-07-03 15:01:57 -03:00 committed by GitHub
commit f4101f9031
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1247,6 +1247,14 @@
@apply absolute right-3 w-14 -translate-y-3.5 cursor-text rounded-sm px-2 py-[1px] text-center hover:ring-[1px] hover:ring-slider-input-border;
}
.cursor-pointer,
.cursor-default,
.cursor-not-allowed,
label,
button {
@apply select-none;
}
.btn-add-input-list {
@apply flex h-6 w-full items-center justify-center rounded-md p-2 text-sm hover:bg-muted;
}