From 07c51d2716f9ff5a2b0ed76c1d7c1c187e062170 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 16 Apr 2020 23:47:57 +0200 Subject: [PATCH] Fix coffee button on features page --- layouts/partials/footer.html | 2 +- src/_theme.scss | 6 +++--- src/main.scss | 5 +++++ 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 6503111..1b75675 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -14,7 +14,7 @@ Chat on matrix.org - + Buy me a coffee diff --git a/src/_theme.scss b/src/_theme.scss index cf7384a..86fbbb6 100644 --- a/src/_theme.scss +++ b/src/_theme.scss @@ -73,13 +73,13 @@ } } - &.coffe { + &.coffee { padding: 1em 1.5em; height: auto; // Shadow from the original button - box-shadow: 0px 1px 2px rgba(190, 190, 190, 0.5) !important; - -webkit-box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5) !important; + box-shadow: 0px 1px 2px rgba(190, 190, 190, 0.5); + -webkit-box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5); } } diff --git a/src/main.scss b/src/main.scss index 8f45ffe..06b9baf 100644 --- a/src/main.scss +++ b/src/main.scss @@ -294,5 +294,10 @@ h1, h2, h3, h4, h5, h6 { a { color: lighten(#000, 70%); } + + .button.coffee { + color: $white; + box-shadow: none; + } } }