movie-night-web/app/app.vue

45 lines
542 B
Vue
Raw Normal View History

2026-02-16 19:12:00 -06:00
<script lang="ts" setup>
</script>
<template>
<div>
<NuxtRouteAnnouncer/>
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
</div>
</template>
<style>
body {
background-color: #f5f5f5;
2026-04-09 18:44:44 -05:00
font-family: var(--font-body), serif;
2026-02-16 19:12:00 -06:00
}
.content {
display: flex;
flex-direction: column;
gap: 1rem;
margin: 1rem 0;
}
2026-02-16 19:12:00 -06:00
/* sm */
@media (min-width: 640px) {
}
/* md */
@media (min-width: 768px) {
}
/* lg */
@media (min-width: 1024px) {
}
/* xl */
@media (min-width: 1280px) {
}
/* 2xl */
@media (min-width: 1536px) {
}
</style>