From b280889260c078b88b11d84ff995037e5c0e5298 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 17 Jul 2022 20:37:19 +0200 Subject: [PATCH] fix: fix wrong class and parameter name (#461) --- layouts/shortcodes/img.html | 2 +- src/sass/_mobile.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/layouts/shortcodes/img.html b/layouts/shortcodes/img.html index a9967c5..5a4d647 100644 --- a/layouts/shortcodes/img.html +++ b/layouts/shortcodes/img.html @@ -1,7 +1,7 @@ {{- $source := ($.Page.Resources.ByType "image").GetMatch (printf "%s" (.Get "name")) }} {{- $customAlt := .Get "alt" }} {{- $customSize := .Get "size" | lower }} -{{- $lazyLoad := default (default true $.Site.Params.GeekblogImageLazyLoading) (.Get "lazy") }} +{{- $lazyLoad := default (default true $.Site.Params.GeekdocImageLazyLoading) (.Get "lazy") }} {{- with $source }} {{- $caption := default .Title $customAlt }} diff --git a/src/sass/_mobile.scss b/src/sass/_mobile.scss index 86efa3b..6e8e0a0 100644 --- a/src/sass/_mobile.scss +++ b/src/sass/_mobile.scss @@ -64,11 +64,11 @@ .flex-mobile-column { flex-direction: column; - &.gblog-columns { + &.gdoc-columns { margin: $padding-32 0; } - .gblog-columns__content { + .gdoc-columns__content { min-width: auto; margin: 0; }