initial commit
This commit is contained in:
commit
869be69d67
42 changed files with 11444 additions and 0 deletions
36
app/app.vue
Normal file
36
app/app.vue
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<script lang="ts" setup>
|
||||
</script>
|
||||
<template>
|
||||
<div>
|
||||
<NuxtRouteAnnouncer/>
|
||||
<NuxtLayout>
|
||||
<NuxtPage/>
|
||||
</NuxtLayout>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
body {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
/* 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue