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 | <template>
<div class="d-flex">
<span
class="icon-search mr-3"
v-on:click="$nuxt.$emit('rightSide', 'search')"
></span>
</div>
</template>
<script>
export default {};
</script>
<style scoped>
.icon-search {
display: inline-block;
min-width: 30px;
height: 30px;
filter: brightness(0) invert(1);
background-size: cover;
background-image: url("../../assets/icons/iconmonstr-search-thin.svg");
}
</style> |