All checks were successful
Build and Deploy Nuxt / build (push) Successful in 52s
24 lines
346 B
Vue
24 lines
346 B
Vue
<script setup>
|
|
import NoteContainer from './NoteContainer.vue';
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="content">
|
|
<NoteContainer>
|
|
|
|
</NoteContainer>
|
|
<!-- PowerMod -->
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.content {
|
|
flex-grow: 1;
|
|
min-width: 0; /* 👈 important */
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
</style> |