Skip to content

Commit

Permalink
Disable select on text
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Bento committed Nov 6, 2017
1 parent 3462ca8 commit 8bcf50a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/renderer/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ html,
body {
padding: 0;
margin: 0;
-webkit-user-select: none;
}

body {
Expand Down
11 changes: 11 additions & 0 deletions src/renderer/preferences.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

body {
background-color: #ECECEC;
margin-top: 10px;
font-size: 12px;
-webkit-user-select: none;
animation: fadein 0.5s;
}

.checkbox-container {
Expand Down

0 comments on commit 8bcf50a

Please sign in to comment.