7 lines
195 B
SCSS
7 lines
195 B
SCSS
// Disable the selection of element
|
|
// This allow to avoid the show "mobile menu" on long press to text on Mobile
|
|
// and so avoid JS preventDefault
|
|
.o_user_select_none {
|
|
user-select: none;
|
|
}
|