Skip to content

Instantly share code, notes, and snippets.

@Balaagha
Last active April 5, 2020 14:00
Show Gist options
  • Select an option

  • Save Balaagha/613c22e79c70ef16be65507fe3b18373 to your computer and use it in GitHub Desktop.

Select an option

Save Balaagha/613c22e79c70ef16be65507fe3b18373 to your computer and use it in GitHub Desktop.
SCSS
SCSS tutorial & tips
@mixin disable-text-selection {
-webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
.user-card{
h4{cursor: pointer;
@include disable-text-selection;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment