mirror of https://github.com/zulip/zulip.git
8 lines
192 B
SCSS
8 lines
192 B
SCSS
|
@mixin prefixed-user-select($value) {
|
||
|
-webkit-touch-callout: $value;
|
||
|
-webkit-user-select: $value;
|
||
|
-moz-user-select: $value;
|
||
|
-ms-user-select: $value;
|
||
|
user-select: $value;
|
||
|
}
|