Files
BinarySandia04 e6d66529e3
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 52s
ye
2026-04-29 01:32:09 +02:00

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>