Skip to content
Snippets Groups Projects
Commit b22ebc4b authored by Ingrid Martinsheimen Egge's avatar Ingrid Martinsheimen Egge :cow2:
Browse files

startet på popup

parent 7b5fbe13
No related branches found
No related tags found
1 merge request!13Fridge view
Pipeline #218810 failed
<template>
<div id="popup">
<p>Hvor mye har du spist?</p>
<br>
<br>
<p>50%</p>
<p>|----------o-----------|</p>
<p>.</p>
<div id="buttons">
<button>ALT</button>
<button>Ingen ting</button>
</div>
</div>
</template>
<script>
export default {
name: "EatFridgeItemModal",
}
</script>
<style scoped lang="scss">
#popup {
background-color: turquoise;
color: black;
width: 50%;
display:flex;
flex-direction: column;
align-items: center;
}
#buttons {
justify-content: center;
display: flex;
}
</style>
\ No newline at end of file
<script setup>
import EatFridgeItemModal from "@/components/EatFridgeItemModal.vue";
</script>
<template>
<main>
<eat-fridge-item-modal></eat-fridge-item-modal>
<p>HALLO</p>
</main>
</template>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment