Fix text color when hovering social link buttons

Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
Tilman Vatteroth 2020-05-31 23:03:56 +02:00 committed by mrdrogdrog
parent 570c45017c
commit ef725c8b6e

View file

@ -2,9 +2,10 @@
color: #FFFFFF; color: #FFFFFF;
@mixin button($color) { @mixin button($color) {
color: #ffffff;
background-color: $color; background-color: $color;
&:hover { &:hover {
background-color: darken($color, 10%); background-color: darken($color, 15%);
} }
} }