Merge branch 'fix/disable-select-on-icons' into 'develop'

Disable text selection on icons and buttons

See merge request pleroma/pleroma-fe!122
This commit is contained in:
lambda 2017-11-02 14:49:23 +00:00
commit 302c46741d
1 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,10 @@
min-height: 100vh; min-height: 100vh;
} }
i {
user-select: none;
}
h4 { h4 {
margin: 0; margin: 0;
} }
@ -30,6 +34,7 @@ a {
} }
button{ button{
user-select: none;
border: none; border: none;
border-radius: 5px; border-radius: 5px;
cursor: pointer; cursor: pointer;