diff --git a/src/components/bannerbar.vue b/src/components/bannerbar.vue index efa3d28..e5e5659 100644 --- a/src/components/bannerbar.vue +++ b/src/components/bannerbar.vue @@ -1,14 +1,20 @@ \ No newline at end of file diff --git a/src/components/navbar.vue b/src/components/navbar.vue index 8d6d680..ce7024a 100644 --- a/src/components/navbar.vue +++ b/src/components/navbar.vue @@ -112,7 +112,7 @@ li { border: 2px solid; margin: .5em; - @media screen and (min-width: 450px) { + @media screen and (min-width: 451px) { display: none; } } diff --git a/src/components/stamps.vue b/src/components/stamps.vue index 12ae594..02e7df0 100644 --- a/src/components/stamps.vue +++ b/src/components/stamps.vue @@ -2,12 +2,18 @@

stampbook

- +
\ No newline at end of file diff --git a/src/views/PetsView.vue b/src/views/PetsView.vue index ed124fd..0b1feae 100644 --- a/src/views/PetsView.vue +++ b/src/views/PetsView.vue @@ -30,8 +30,8 @@

Venezuelan Suntiger

-

currently my biggest tarantula!
they have not been here for long, but they love to climb around in - their enclosure and hide behind their wall
picture coming soon!

+

currently my biggest tarantula!
they have not been here for long, but they love to climb around + and eat bugs

ISOPODS

@@ -76,15 +76,19 @@ p { } @media screen and (max-width: 800px) { - h1, h2, h4 { + + h1, + h2, + h4 { font-size: 32px; margin: 0; } h4 { - text-align: center; - margin-top: 0; -} + text-align: center; + margin-top: 0; + } + p { text-align: center; font-size: 20px; diff --git a/src/views/SocialsView.vue b/src/views/SocialsView.vue deleted file mode 100644 index 0bf0604..0000000 --- a/src/views/SocialsView.vue +++ /dev/null @@ -1,8 +0,0 @@ - - - \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts index 4217010..6c94674 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -12,7 +12,16 @@ export default defineConfig({ ], resolve: { alias: { - '@': fileURLToPath(new URL('./src', import.meta.url)) + '@': fileURLToPath(new URL('./src', import.meta.url)), + // '@/assets': fileURLToPath(new URL('./assets', import.meta.url)) }, }, + assetsInclude: ["**/*.GIF"], + build: { + rollupOptions: { + output: { + assetFileNames: `assets/[name].[ext]` + } + } + } })