Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thegeeklab/hugo-geekdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Kaussow <mail@thegeeklab.de>2022-07-17 21:37:19 +0300
committerGitHub <noreply@github.com>2022-07-17 21:37:19 +0300
commitb280889260c078b88b11d84ff995037e5c0e5298 (patch)
tree99958b8e0e7f21b7e8f09aec00bd1eaaf756e6d6
parent66293c02691e06dece7d9ac7a573d65d7b004553 (diff)
fix: fix wrong class and parameter name (#461)v0.33.1
-rw-r--r--layouts/shortcodes/img.html2
-rw-r--r--src/sass/_mobile.scss4
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;
}