insights4you-jekyll-theme 0.5.2 → 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88548ad0fa5a771cd5f139005b53fe6044b40ab4b3aa456fe7efd228a4a5212c
4
- data.tar.gz: a28c15d044c57d343b5f0ee0267c0a9994e5187dd557bf578ab926a33399c2e9
3
+ metadata.gz: e0da813ec29b0da3b877fac976a957dbc7d3f480f0bffdb755d8c2ff98ad06a1
4
+ data.tar.gz: 8e20a0ae06ed8c845533b9107066ee99057f9b9b2a411c2cf6c3fb1abbf507ea
5
5
  SHA512:
6
- metadata.gz: 11826e7b7642f718ecee050568bd703aee2ba53fb2d208d338d25238f7a042bbe4542e1f8ab63f05c683eadf5062970ea4b8f2d154b4ebac196670939fabd387
7
- data.tar.gz: f73c49e146ab7bce8ffe7240c9deb3c1a262adbe1ff5c75e5735846d431f4f4b3efbd4e3334b701fa4bc61293075535c5ec16faa27768c43af1344a944377661
6
+ metadata.gz: 53020092572db74af82f6d3126659df29a0b883520937e7062238128dd7c6ef46907d7136f1c83a9bddfe092646103f52646102002168cb11e1d3d079d049c2a
7
+ data.tar.gz: 67821a35b5aca0da22b4b8befe544587c8c76ebc15e7018bb980847ce19fcb50b298c98042688ca09b02f8b75c23612c3848d02fe79a09cd9924c5e6298a604d
data/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.5.3]
9
+
10
+ ### Fixed
11
+ - `_layouts/default.html`: pages with `layout-wrapper-full: true` (every blog post, via the `posts` collection default) rendered a Bootstrap `.row` directly inside `.page-body` with no `.container` around it. The row's default negative horizontal margins had no container padding to cancel them out, pushing content past the viewport edge and causing a persistent horizontal scrollbar on every post. Wrapped the row in a `container-xl`, matching the non-full-width branch.
12
+
8
13
  ## [0.5.2]
9
14
 
10
15
  ### Fixed
@@ -139,6 +144,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
139
144
  - **N/A**: No files or features were removed in this release.
140
145
 
141
146
 
147
+ [0.5.3]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.5.2...v0.5.3
142
148
  [0.5.2]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.5.1...v0.5.2
143
149
  [0.5.1]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.5.0...v0.5.1
144
150
  [0.5.0]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.4.0...v0.5.0
@@ -15,11 +15,13 @@ body-class: border-top-wide border-primary
15
15
  <!-- BEGIN PAGE BODY -->
16
16
  <div class="page-body">
17
17
  {% if layout-wrapper-full %}
18
- <div class="row justify-content-center">
19
- <div class="col-lg-11 col-xl-10">
20
- <div class="card card-lg">
21
- <div class="card-body markdown">
22
- {{ content }}
18
+ <div class="container-xl">
19
+ <div class="row justify-content-center">
20
+ <div class="col-lg-11 col-xl-10">
21
+ <div class="card card-lg">
22
+ <div class="card-body markdown">
23
+ {{ content }}
24
+ </div>
23
25
  </div>
24
26
  </div>
25
27
  </div>
@@ -5,7 +5,7 @@ require 'date'
5
5
  Gem::Specification.new do |spec|
6
6
  # Basic Information
7
7
  spec.name = "insights4you-jekyll-theme"
8
- spec.version = "0.5.2"
8
+ spec.version = "0.5.3"
9
9
  spec.platform = Gem::Platform::RUBY
10
10
  spec.date = Time.now.strftime('%Y-%m-%d')
11
11
  spec.authors = ["Marcio Paiva Barbosa"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: insights4you-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcio Paiva Barbosa