add hamburger

This commit is contained in:
eggy 2022-07-22 16:15:24 -04:00
parent cc9f204174
commit 2722a2d75f

View File

@ -1,5 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import ColourPicker from "./ColourPicker.vue"; import ColourPicker from "./ColourPicker.vue";
import IconHamburger from "@/assets/images/hamburger.svg?component";
</script> </script>
<template> <template>
<nav class="flex items-center justify-between"> <nav class="flex items-center justify-between">
@ -11,7 +12,9 @@ import ColourPicker from "./ColourPicker.vue";
</ul> </ul>
<div class="flex items-center"> <div class="flex items-center">
<ColourPicker /> <ColourPicker />
<div class="hamburger">HAMBURGER</div> <div class="hamburger">
<IconHamburger />
</div>
</div> </div>
</nav> </nav>
</template> </template>