Fix coffee button on features page

This commit is contained in:
kolaente 2020-04-16 23:47:57 +02:00
parent 366a0a18fe
commit 07c51d2716
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
3 changed files with 9 additions and 4 deletions

View File

@ -14,7 +14,7 @@
<a href="https://riot.im/app/#/room/!dCRiCiLaCCFVNlDnYs:matrix.org?via=matrix.org"> <a href="https://riot.im/app/#/room/!dCRiCiLaCCFVNlDnYs:matrix.org?via=matrix.org">
<img src="https://img.shields.io/badge/chat-on%20matrix.org-brightgreen" alt="Chat on matrix.org"/> <img src="https://img.shields.io/badge/chat-on%20matrix.org-brightgreen" alt="Chat on matrix.org"/>
</a> </a>
<a target="_blank" href="https://www.buymeacoffee.com/kolaente" class="button coffe is-primary"> <a target="_blank" href="https://www.buymeacoffee.com/kolaente" class="button coffee is-primary">
<span class="icon is-small"> <span class="icon is-small">
<img src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" alt="Buy me a coffee"> <img src="https://cdn.buymeacoffee.com/buttons/bmc-new-btn-logo.svg" alt="Buy me a coffee">
</span> </span>

View File

@ -73,13 +73,13 @@
} }
} }
&.coffe { &.coffee {
padding: 1em 1.5em; padding: 1em 1.5em;
height: auto; height: auto;
// Shadow from the original button // Shadow from the original button
box-shadow: 0px 1px 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) !important; -webkit-box-shadow: 0px 1px 2px 2px rgba(190, 190, 190, 0.5);
} }
} }

View File

@ -294,5 +294,10 @@ h1, h2, h3, h4, h5, h6 {
a { a {
color: lighten(#000, 70%); color: lighten(#000, 70%);
} }
.button.coffee {
color: $white;
box-shadow: none;
}
} }
} }