Files
aranroig.com/frontend/app/app.vue
BinarySandia04 2def9a207c
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 34s
Added more things
2026-03-20 00:07:23 +01:00

43 lines
666 B
Vue

<template>
<head>
<title>Aran Central</title>
</head>
<div>
<NuxtRouteAnnouncer />
<div class="container">
<NuxtPage></NuxtPage>
</div>
</div>
</template>
<script setup lang="ts">
onMounted(() => {
setupTheme()
});
</script>
<style lang="scss" scoped>
.container {
align-items: stretch; /* make items grow horizontally to fill container */
margin-bottom: 30px;
display: flex;
flex-direction: column;
padding-left: 20px;
padding-right: 20px;
}
@media screen and (min-width: 1200px){
.container {
width: 1100px;
}
}
@media screen and (max-width: 1200px){
.container {
max-width: 1100px;
}
}
</style>