All files / components/Header Cart.vue

0% Statements 0/3
100% Branches 0/0
100% Functions 0/0
0% Lines 0/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60                                                                                                                       
<template>
  <div class="icon-bag-wrap position-relative" v-on:click="$nuxt.$emit('rightSide', 'cart')">
    <span class="position-absolute w-100 d-flex justify-content-center align-items-center gold order-items-count">{{ orderNoOfItems }}</span>
    <span class="icon icon-bag position-relative"></span>
  </div>
</template>

<script>
import { mapGetters } from "vuex";
 
export default {
  computed: {
    ...mapGetters({
      orderNoOfItems: "order/orderNoOfItems",
    }),
  },
};
</script>
 
<style scoped>
.container {
  top: 100%;
  height: 100vh;
  width: 100vw;
}
 
.icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  background-size: cover;
}
 
.icon-bag-wrap {
  right: 0;
  width: 30px;
  height: 30px;
}
 
.icon-bag-wrap:hover > span {
  color: #d2a52c;
}
 
.icon-bag {
  right: 0;
  top: -1px;
  background-image: url("../../assets/icons/shopping-bag.svg");
}
 
.icon-bag > span {
  filter: invert(50%) sepia(56%) saturate(571%) hue-rotate(6deg) brightness(88%)
    contrast(86%);
}
 
.order-items-count {
    font-size: 14px !important;
    top: 7px;
}
</style>