ye
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 52s

This commit is contained in:
2026-04-29 01:32:09 +02:00
parent 76bb9fbb30
commit e6d66529e3
16 changed files with 767 additions and 83 deletions

View File

@@ -1,16 +1,13 @@
<script setup>
import NoteContainer from './NoteContainer.vue';
const emitter = useEmitter();
function hideSearch(){
emitter.emit("hide-search-container");
}
</script>
<template>
<div class="content" v-on:click="hideSearch">
<NoteContainer></NoteContainer>
<div class="content">
<NoteContainer>
</NoteContainer>
<!-- PowerMod -->
</div>
</template>
@@ -18,6 +15,7 @@ function hideSearch(){
<style scoped>
.content {
flex-grow: 1;
min-width: 0; /* 👈 important */
display: flex;
justify-content: center;
align-items: center;