Galleria fixes

pull/3420/head
Bahadır Sofuoğlu 2022-12-09 12:02:20 +03:00
parent 73df518f6b
commit 02f1c439e7
5 changed files with 11 additions and 15 deletions

View File

@ -79,3 +79,8 @@ export default {
} }
}; };
</script> </script>
<style lang="scss">
@import '@/assets/styles/landing/landing.scss';
@import '@/assets/styles/app/app.scss';
</style>

View File

@ -20,11 +20,11 @@
<script> <script>
import DomHandler from '@/components/utils/DomHandler'; import DomHandler from '@/components/utils/DomHandler';
import AppTopBar from './AppTopBar.vue';
import AppMenu from './AppMenu.vue';
import AppFooter from './AppFooter.vue';
import AppConfigurator from './AppConfigurator.vue'; import AppConfigurator from './AppConfigurator.vue';
import AppFooter from './AppFooter.vue';
import AppMenu from './AppMenu.vue';
import AppNews from './AppNews.vue'; import AppNews from './AppNews.vue';
import AppTopBar from './AppTopBar.vue';
export default { export default {
data() { data() {
@ -127,7 +127,3 @@ export default {
} }
}; };
</script> </script>
<style lang="scss">
@import './assets/styles/app/app.scss';
</style>

View File

@ -13,12 +13,12 @@ export default defineNuxtConfig({
{ {
id: 'home-table-link', id: 'home-table-link',
rel: 'stylesheet', rel: 'stylesheet',
href: 'styles/landing/themes/lara-light-blue/theme.css' href: '/styles/landing/themes/lara-light-blue/theme.css'
}, },
{ {
id: 'theme-link', id: 'theme-link',
rel: 'stylesheet', rel: 'stylesheet',
href: `themes/lara-light-blue/theme.css` href: `/themes/lara-light-blue/theme.css`
} }
] ]
} }

View File

@ -107,8 +107,3 @@ export default {
} }
}; };
</script> </script>
<style lang="scss">
@import '@/assets/styles/landing/landing.scss';
@import '@/assets/styles/app/app.scss';
</style>

View File

@ -1,6 +1,6 @@
export default class PhotoService { export default class PhotoService {
getImages() { getImages() {
return fetch('demo/data/photos.json') return fetch('/demo/data/photos.json')
.then((res) => res.json()) .then((res) => res.json())
.then((d) => d.data); .then((d) => d.data);
} }