1
1
mirror of https://github.com/primer/css.git synced 2024-11-28 13:12:16 +03:00

add .user-select-none utility class

This commit is contained in:
Austin Paquette 2018-07-25 11:32:04 -06:00
parent 1417f1298f
commit 200a9ab1e3
No known key found for this signature in database
GPG Key ID: 8D5DF8F4FFD8BFB7

View File

@ -219,3 +219,8 @@
.text-mono {
font-family: $mono-font;
}
/* Disallow user from selecting text */
.user-select-none {
user-select: none !important;
}