aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlambda <pleromagit@rogerbraun.net>2017-11-02 14:49:23 +0000
committerlambda <pleromagit@rogerbraun.net>2017-11-02 14:49:23 +0000
commit302c46741d89d58b452dfbe7c5e4a760a50adab9 (patch)
tree2469c653dc44e0b0c36dd6b1c2247e69bf980439 /src
parent6e611f4039f5c7646cd13ea61e2f66cda02cc035 (diff)
parent4cba955fca77fde8f76d0c727ed27bed9cba59d7 (diff)
Merge branch 'fix/disable-select-on-icons' into 'develop'
Disable text selection on icons and buttons See merge request pleroma/pleroma-fe!122
Diffstat (limited to 'src')
-rw-r--r--src/App.scss5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss
index 23f7304f..fd44dfb8 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -7,6 +7,10 @@
min-height: 100vh;
}
+i {
+ user-select: none;
+}
+
h4 {
margin: 0;
}
@@ -30,6 +34,7 @@ a {
}
button{
+ user-select: none;
border: none;
border-radius: 5px;
cursor: pointer;