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

github.com/seanlane/gochowdown.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasper Meijn <casper@meijn.net>2021-05-04 22:31:19 +0300
committerCasper Meijn <casper@meijn.net>2021-05-04 22:34:54 +0300
commitd05e76aea671d21481f868f5f001863b0f0d5566 (patch)
tree2b544f7a09844c38b8c0589561cd7b172666f3ea
parente5336ac286d612dceb7448abd47a7725c0adfcb9 (diff)
recipe: Increase size of columns to make room for longer languages
-rw-r--r--layouts/components/single.html6
-rw-r--r--layouts/recipes/single.html6
2 files changed, 6 insertions, 6 deletions
diff --git a/layouts/components/single.html b/layouts/components/single.html
index 159fa1a..b20b51b 100644
--- a/layouts/components/single.html
+++ b/layouts/components/single.html
@@ -29,17 +29,17 @@
<div class="clearfix mt3">
{{ with .Params.yield }}
- <div class="sm-col sm-col-2">
+ <div class="sm-col sm-col-3">
<h4 class="blue mt0 mb2 xs-center">{{ i18n "yields" . }}</h4>
</div>
{{ end }}
{{ with .Params.prepTime }}
- <div class="sm-col sm-col-2">
+ <div class="sm-col sm-col-3">
<h4 class="blue mt0 mb2 xs-center">{{ i18n "prepTime" . }}</h4>
</div>
{{ end }}
{{ with .Params.cookTime }}
- <div class="sm-col sm-col-2">
+ <div class="sm-col sm-col-3">
<h4 class="blue mt0 mb2 xs-center">{{ i18n "cookTime" . }}</h4>
</div>
{{ end }}
diff --git a/layouts/recipes/single.html b/layouts/recipes/single.html
index c2078f3..d60ed1f 100644
--- a/layouts/recipes/single.html
+++ b/layouts/recipes/single.html
@@ -29,17 +29,17 @@
<div class="clearfix mt3">
{{ with .Params.yield }}
- <div class="sm-col sm-col-2">
+ <div class="sm-col sm-col-3">
<h4 class="blue mt0 mb2 xs-center">{{ i18n "yields" . }}</h4>
</div>
{{ end }}
{{ with .Params.prepTime }}
- <div class="sm-col sm-col-2">
+ <div class="sm-col sm-col-3">
<h4 class="blue mt0 mb2 xs-center">{{ i18n "prepTime" . }}</h4>
</div>
{{ end }}
{{ with .Params.cookTime }}
- <div class="sm-col sm-col-2">
+ <div class="sm-col sm-col-3">
<h4 class="blue mt0 mb2 xs-center">{{ i18n "cookTime" . }}</h4>
</div>
{{ end }}