diff --git a/src/components/Navigation.vue b/src/components/Navigation.vue index 663136a..c4eadde 100644 --- a/src/components/Navigation.vue +++ b/src/components/Navigation.vue @@ -204,11 +204,12 @@ header { font-weight: 300; font-size: 16px; padding: 0 8px; - transition: 0.3s color ease; + border-radius: 30px; + transition: 0.3s background-color ease; } .link:hover { - color: red; + background-color: #eb9d63; } .logo { diff --git a/src/views/Cart.vue b/src/views/Cart.vue index 2509c86..574aaca 100644 --- a/src/views/Cart.vue +++ b/src/views/Cart.vue @@ -12,13 +12,14 @@ {{ item.quantity }} - +
Total Items: {{ cartItemCount }}
Total Price: {{ cartTotal | currency }}
+