From 3aa989d2c11298f1cb1a40f436329508604b7900 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Midb=C3=B8e?= Date: Mon, 2 Nov 2020 15:14:13 +0100 Subject: [PATCH] Before requested hearth is grey, clicking sets colors to pink. --- src/ui/RequestedWineCard.vue | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/src/ui/RequestedWineCard.vue b/src/ui/RequestedWineCard.vue index bf13a34..addabe5 100644 --- a/src/ui/RequestedWineCard.vue +++ b/src/ui/RequestedWineCard.vue @@ -4,7 +4,7 @@
{{ requestedElement.count }} - +
@@ -17,10 +17,10 @@ @@ -94,26 +94,31 @@ export default { } .icon--heart{ - color: $link-color; + color: grey; } } -.link .active { - border-color: $link-color; -} +.active { + &.link { + border-color: $link-color + } + &.icon--heart { + color: $link-color; + } +} .request { display: flex; align-items: center; &-icon { - font-size: 2rem; - color: $link-color; + font-size: 1.5rem; + color: grey; } a { - margin-left: 0.75rem; + margin-left: 0.5rem; } } \ No newline at end of file