From 55050c9a0a0ae0da9ab3f8e6f4d8ed99b41519bf Mon Sep 17 00:00:00 2001 From: Ivo Nikic Date: Tue, 29 Jan 2019 11:17:20 +0200 Subject: [PATCH] 30-fix-responsiveness-of-images --- src/components/LazyImage/styles.module.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/LazyImage/styles.module.scss b/src/components/LazyImage/styles.module.scss index e50cdc3..eefeff4 100644 --- a/src/components/LazyImage/styles.module.scss +++ b/src/components/LazyImage/styles.module.scss @@ -1,3 +1,5 @@ +@import '../../theme/variables.scss'; + .img { display: block; @@ -9,4 +11,8 @@ &:global(.lazyloaded) { filter: blur(0); } + + @media only screen and (max-width: $largeTablet) { + margin-top: 2rem; + } }