From faa16d1b16948fce2aeb1484222d1250d75bed2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Sat, 29 Feb 2020 19:19:25 +0100 Subject: [PATCH] Fix BEM misuse --- src/{molecules => organisms}/Footer.svelte | 0 src/routes/choose.svelte | 2 +- src/routes/credits.svelte | 2 +- src/routes/index.svelte | 2 +- src/routes/location/[country]/[location].svelte | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename src/{molecules => organisms}/Footer.svelte (100%) diff --git a/src/molecules/Footer.svelte b/src/organisms/Footer.svelte similarity index 100% rename from src/molecules/Footer.svelte rename to src/organisms/Footer.svelte diff --git a/src/routes/choose.svelte b/src/routes/choose.svelte index ac70218..362e0dd 100644 --- a/src/routes/choose.svelte +++ b/src/routes/choose.svelte @@ -11,8 +11,8 @@ import IconArrow from '../atoms/IconArrow' import TitleSite from '../atoms/TitleSite' import Globe from '../molecules/InteractiveGlobe' - import Footer from '../molecules/Footer' import Locations from '../organisms/Locations' + import Footer from '../organisms/Footer' // Reset current location if existing $: { diff --git a/src/routes/credits.svelte b/src/routes/credits.svelte index d53818f..4e74b4b 100644 --- a/src/routes/credits.svelte +++ b/src/routes/credits.svelte @@ -10,7 +10,7 @@ import TitleSite from '../atoms/TitleSite' import LinkTranslate from '../atoms/LinkTranslate' import InteractiveGlobe from '../molecules/InteractiveGlobe' - import Footer from '../molecules/Footer' + import Footer from '../organisms/Footer' // Categories $: credits = $site.credits_list diff --git a/src/routes/index.svelte b/src/routes/index.svelte index 2362e03..8362aa9 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -34,7 +34,7 @@ import InteractiveGlobe from '../molecules/InteractiveGlobe' import Carousel from '../organisms/Carousel' import Locations from '../organisms/Locations' - import Footer from '../molecules/Footer' + import Footer from '../organisms/Footer' // Reset current location if existing $: { diff --git a/src/routes/location/[country]/[location].svelte b/src/routes/location/[country]/[location].svelte index 8c7348f..ad38d13 100644 --- a/src/routes/location/[country]/[location].svelte +++ b/src/routes/location/[country]/[location].svelte @@ -40,7 +40,7 @@ import ToggleLayout from '../../../atoms/ToggleLayout' import Photo from '../../../molecules/Photo' import Switcher from '../../../molecules/Switcher' - import Footer from '../../../molecules/Footer' + import Footer from '../../../organisms/Footer' // Props and variables export let photos