fix: fix wrong class and parameter name (#461)

This commit is contained in:
Robert Kaussow 2022-07-17 20:37:19 +02:00 committed by GitHub
parent 66293c0269
commit b280889260
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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 }}

View File

@ -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;
}