Skip to content

Commit

Permalink
makes text unselectable and removes hover text cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
DevStarks committed May 29, 2017
1 parent 0919d68 commit 49406ef
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/styles/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ body {
background-color:$background-color;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;


// makes text unselectable
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

li {
Expand All @@ -24,3 +33,9 @@ ul {
padding: 0;
margin: 0;
}

span, p, div {
&:hover {
cursor: default;
}
}

0 comments on commit 49406ef

Please sign in to comment.