fix: fix wrong class and parameter name (#461)
This commit is contained in:
parent
66293c0269
commit
b280889260
2 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
{{- $source := ($.Page.Resources.ByType "image").GetMatch (printf "%s" (.Get "name")) }}
|
{{- $source := ($.Page.Resources.ByType "image").GetMatch (printf "%s" (.Get "name")) }}
|
||||||
{{- $customAlt := .Get "alt" }}
|
{{- $customAlt := .Get "alt" }}
|
||||||
{{- $customSize := .Get "size" | lower }}
|
{{- $customSize := .Get "size" | lower }}
|
||||||
{{- $lazyLoad := default (default true $.Site.Params.GeekblogImageLazyLoading) (.Get "lazy") }}
|
{{- $lazyLoad := default (default true $.Site.Params.GeekdocImageLazyLoading) (.Get "lazy") }}
|
||||||
|
|
||||||
{{- with $source }}
|
{{- with $source }}
|
||||||
{{- $caption := default .Title $customAlt }}
|
{{- $caption := default .Title $customAlt }}
|
||||||
|
|
|
@ -64,11 +64,11 @@
|
||||||
.flex-mobile-column {
|
.flex-mobile-column {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
&.gblog-columns {
|
&.gdoc-columns {
|
||||||
margin: $padding-32 0;
|
margin: $padding-32 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gblog-columns__content {
|
.gdoc-columns__content {
|
||||||
min-width: auto;
|
min-width: auto;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue