From ccd08760a56fec9ca306dc1bccdd4e4fd4c797ef Mon Sep 17 00:00:00 2001 From: Pierre Romera Date: Thu, 22 Nov 2018 00:31:55 +0100 Subject: [PATCH] Improved responsivity --- src/components/GenericFooter.vue | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/components/GenericFooter.vue b/src/components/GenericFooter.vue index 5fd7b1b0b..c82ab51cb 100644 --- a/src/components/GenericFooter.vue +++ b/src/components/GenericFooter.vue @@ -7,7 +7,10 @@ - International Consortium of Investigative Journalists + + International Consortium of
+ Investigative Journalists +

1710 Rhode Island Ave NW | 11th floor
@@ -118,7 +121,7 @@ export default { h5 { font-family: $font-family-sans-serif; - font-size: 18px; + font-size: 1rem; } &__icij { @@ -126,11 +129,19 @@ export default { justify-content: start; align-items: center; + @include media-breakpoint-down(xs) { + display: block; + } + &__logo { display: block; width: 54px; flex: 0 0 54px; margin-right: 8px; + + @include media-breakpoint-down(xs) { + margin-bottom: $spacer; + } } } }