Forráskód Böngészése

fix(widget): Portfolio responsive breakpoint (#1462)

Make Portfolio responsive breakpoint consistent with other widgets.

Likely this specific code was missed in the migration from Bootstrap 3 to 4.
Russell J. Hewett 5 éve
szülő
commit
4e893ca29e
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      layouts/partials/widgets/portfolio.html

+ 2 - 2
layouts/partials/widgets/portfolio.html

@@ -10,13 +10,13 @@
 {{/* Standard dual-column layout. */}}
 
 <div class="row">
-  <div class="col-xs-12 col-md-4 section-heading">
+  <div class="col-12 col-lg-4 section-heading">
 
     {{ with $st.Title }}<h1>{{ . | markdownify | emojify }}</h1>{{ end }}
     {{ with $st.Params.subtitle }}<p>{{ . | markdownify | emojify }}</p>{{ end }}
 
   </div>
-  <div class="col-xs-12 col-md-8">
+  <div class="col-12 col-lg-8">
 
 {{ else }}
 {{/* Single column layout. */}}