Files
pmomusic/pmoapp/webapp/src/App.vue
Eric Coissac 6b5282903e
All checks were successful
Build and Push Docker Image / build (push) Successful in 28m52s
Grosse correction sur l'interface graphique et débugage de Open Home.
2025-12-27 13:46:17 +01:00

32 lines
533 B
Vue

<template>
<div class="app-container">
<main class="main-content">
<router-view />
</main>
<!-- Notifications Toast -->
<NotificationToast />
</div>
</template>
<script setup lang="ts">
import NotificationToast from '@/components/NotificationToast.vue'
</script>
<style scoped>
.app-container {
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.main-content {
flex: 1;
width: 100%;
box-sizing: border-box;
overflow-x: hidden;
}
</style>