aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/button.scss
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-11-21 21:42:09 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-11-21 21:42:09 +0100
commit12ff3711a4bbd9887fdfe1e25c23b7b4bd6ed646 (patch)
treebfafaef7a79a514e0362036c9e0a34e9d1066c62 /src/styles/button.scss
parentFix image upload position (diff)
downloadferdium-app-12ff3711a4bbd9887fdfe1e25c23b7b4bd6ed646.tar.gz
ferdium-app-12ff3711a4bbd9887fdfe1e25c23b7b4bd6ed646.tar.zst
ferdium-app-12ff3711a4bbd9887fdfe1e25c23b7b4bd6ed646.zip
Fix dark theme button hover
Diffstat (limited to 'src/styles/button.scss')
-rw-r--r--src/styles/button.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/styles/button.scss b/src/styles/button.scss
index 38e487b47..a66345114 100644
--- a/src/styles/button.scss
+++ b/src/styles/button.scss
@@ -11,8 +11,8 @@
11 background: $dark-theme-gray-lighter; 11 background: $dark-theme-gray-lighter;
12 color: $dark-theme-text-color; 12 color: $dark-theme-text-color;
13 13
14 &:hover { background: darken($dark-theme-gray-lightest, 5%); } 14 &:hover { background: lighten($dark-theme-gray-lighter, 10%); }
15 &:active { background: lighten($dark-theme-gray-lightest, 5%); } 15 &:active { background: lighten($dark-theme-gray-lighter, 20%); }
16 } 16 }
17 17
18 &.franz-form__button--danger { 18 &.franz-form__button--danger {