User Select

The user-select property specifies whether the text of an element can be selected.
Class
Properties
select-none
select: none
select-auto
select: auto
select-text
select: text
select-all
select: all
utilities.scss API
'user-select': (
    'enabled'    : true, // true or false
    'property'   : 'user-select', // css property name (don't change it !)
    'prefix'     : 'select-', // prefix of class name
    'specificity': !important, // or null
    'unit'       : null, // length/angle units (px, rem, em, %, vh, vw etc)
    'args'       : null, // for extra variables
    'variables'  : (none, auto, text, all)
)