Merge pull request #49 from agmm/master

Fixed accidental text selection
This commit is contained in:
Djordje Atlialp 2019-09-08 20:30:44 +02:00 committed by GitHub
commit b7a2d04347
3 changed files with 10 additions and 2 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
node_modules
node_modules
.vscode

View File

@ -41,3 +41,10 @@
.theme-toggler {
fill: currentColor;
}
.unselectable {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}

View File

@ -13,7 +13,7 @@
</span>
{{ end }}
<span class="theme-toggle">{{ partial "theme-icon.html" . }}</span>
<span class="theme-toggle unselectable">{{ partial "theme-icon.html" . }}</span>
</span>
</span>
</header>