diff --git a/src/ui/RequestedWineCard.vue b/src/ui/RequestedWineCard.vue
index dd9d6ce..bf13a34 100644
--- a/src/ui/RequestedWineCard.vue
+++ b/src/ui/RequestedWineCard.vue
@@ -4,22 +4,25 @@
{{ requestedElement.count }}
- {{ locallyRequested ? "💜" : "🤍" }}
+
-
-
- Anbefal
-
+
@@ -77,26 +80,40 @@ export default {
@import "./src/styles/variables";
.requested-count {
- display: inline-block;
+ display: flex;
+ align-items: center;
margin-top: -0.5rem;
background-color: rgb(244,244,244);
border-radius: 1.1rem;
- font-size: 1.1rem;
- padding-left: 1rem;
- padding-right: 1rem;
+ padding: 0.25rem 1rem;
+ font-size: 1.25em;
span {
- padding: 0.6rem 0;
- padding-right: 0.25rem;
- display: inline-block;
+ padding-right: 0.5rem;
+ line-height: 1.25em;
}
- .icon {
- font-style: unset;
+ .icon--heart{
+ color: $link-color;
}
}
.link .active {
border-color: $link-color;
}
+
+
+.request {
+ display: flex;
+ align-items: center;
+
+ &-icon {
+ font-size: 2rem;
+ color: $link-color;
+ }
+
+ a {
+ margin-left: 0.75rem;
+ }
+}
\ No newline at end of file