diff --git a/src/lib/components/FooterComponent.svelte b/src/lib/components/FooterComponent.svelte index 9247577..9fc201e 100644 --- a/src/lib/components/FooterComponent.svelte +++ b/src/lib/components/FooterComponent.svelte @@ -4,24 +4,28 @@ \ No newline at end of file + @media only screen and (max-device-width: 620px) { + .mastodonInstance, + .feedSuffix { + display: none; + } + .footer { + justify-content: center; + } + } + + @media only screen and (max-device-width: 430px) { + .mastodonInstance, + .feedSuffix, + .secretIngredient { + display: none; + } + } + + @media only screen and (max-device-width: 370px) { + .label { + display: none; + } + } + diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index af1013c..cb8a848 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,5 +1,5 @@ +