Skip to content

Commit

Permalink
Update css
Browse files Browse the repository at this point in the history
  • Loading branch information
yandeu committed Dec 23, 2024
1 parent b862ff2 commit 53f2bad
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/css/examples.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@
'Droid Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
-webkit-tap-highlight-color: transparent;
}

canvas {
-webkit-tap-highlight-color: transparent;
}

body {
color: #1b1b1b;
overflow: hidden;
Expand Down
4 changes: 4 additions & 0 deletions src/css/floating-action-button.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ div#floating-action-button {
-webkit-box-shadow: 5px 5px 5px 0px rgb(0, 0, 0, 0.1);
-moz-box-shadow: 5px 5px 5px 0px rgb(0, 0, 0, 0.1);
box-shadow: 5px 5px 5px 0px rgb(0, 0, 0, 0.1);

-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}

div#floating-action-button div {
Expand Down

0 comments on commit 53f2bad

Please sign in to comment.