jekyll-report-dashboard 0.1.19 → 0.1.20

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: 1afc520bd61ee21f8890eb5032995a7543c4928a1ae1b3894a011840cec56b85
4
- data.tar.gz: c82361eefa6faea981deb540d4d64145d15446ed83db2d0cb54f81a34348bcc8
3
+ metadata.gz: 506c6cd0f390e8bca048acbf5507fb5ae877f63ed8473ecc8d917c34d792b1f3
4
+ data.tar.gz: c119e787214f6e40fcf9894f387179a62f5809b7fbc311a12c6fad52bbbaea30
5
5
  SHA512:
6
- metadata.gz: 6788bc39dea4a6654cfd692401aafa6a0bf719a353dc49ad7526b6e103c4dcaf3a626b01dba0f32c0d1e0cfcd0315e46e06bd2dbf2f050a013a03f83d9d9fe54
7
- data.tar.gz: c08fab74ff8ea8c9df9ad893335ad2ddf5dc73d361c832b393536d841d24f16eecab4d823da109fe1b50bcd6bc358b7d22df3766a6cb71a44405fc208d6d2c31
6
+ metadata.gz: 8bc6bd66d48e914e3d4560d60ae2608a9f2ea5f823d034adb40eead1140cd60c419945a9f29839b63aed7a64c60b7b2b014a058fbd197762c7f21a61f6c3dfaf
7
+ data.tar.gz: 4bbe6cd4356b996566af4c12fb239401d47d1ae2b1f9769188a315e8d178b38a4c660036f18bc3b6e8dec7f1105ecfd0c4e5d1053645f71062db4d83c7321cd5
data/404.html CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  permalink: /404.html
3
- layout: default
3
+ layout: base
4
4
  ---
5
5
 
6
6
  <div class="my-3 mx-auto max-w-[37.5rem] text-center">
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <body class="base">
6
+
7
+ {%- include header.html -%}
8
+
9
+ <main class="py-8" aria-label="Content">
10
+ <div class="wrapper">
11
+ {{ content }}
12
+ </div>
13
+ </main>
14
+
15
+ {%- include footer.html -%}
16
+
17
+ </body>
@@ -3,18 +3,6 @@
3
3
 
4
4
  {%- include head.html -%}
5
5
 
6
- <body>
7
-
8
- {%- include header.html -%}
9
-
10
- <main class="py-8" aria-label="Content">
11
- <div class="wrapper">
12
- {{ content }}
13
- </div>
14
- </main>
15
-
16
- {%- include footer.html -%}
17
-
18
- </body>
6
+ {{ content }}
19
7
 
20
8
  </html>
@@ -0,0 +1,19 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <body class="home">
6
+
7
+ {%- include header.html -%}
8
+
9
+ <main class="py-8" aria-label="Content">
10
+ <div class="wrapper">
11
+ {{ content }}
12
+ </div>
13
+ </main>
14
+
15
+ {%- include footer.html -%}
16
+
17
+ </body>
18
+
19
+ </html>
data/_layouts/page.html CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
- layout: default
2
+ layout: base
3
3
  ---
4
4
 
5
5
  <article>
data/_layouts/post.html CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
- layout: default
2
+ layout: base
3
3
  ---
4
4
 
5
5
  <article>
@@ -1,5 +1,5 @@
1
1
  ---
2
- layout: page
2
+ layout: base
3
3
  ---
4
4
 
5
5
  {% include release-note.html post=page content=content %}
@@ -20,6 +20,7 @@
20
20
  --color-fail: var(--color-red-600);
21
21
  --color-warn: var(--color-amber-400);
22
22
 
23
+ --breakpoint-xs: 26rem; /* 416px */
23
24
  --breakpoint-sm: 40rem; /* 640px */
24
25
  --breakpoint-md: 48rem; /* 768px */
25
26
  --breakpoint-lg: 64rem; /* 1024px */
@@ -198,22 +199,50 @@
198
199
  }
199
200
  }
200
201
 
201
- .wrapper {
202
+ .base .wrapper {
202
203
  max-width: 30rem;
203
204
  margin: 0 auto;
204
205
  padding: 0 1rem;
205
206
 
206
- @media (width >= 26rem) {
207
- max-width: 24rem; /* 384px, container @sm */
207
+ @media (width >= 26rem) { /* 416px, xs */
208
+ max-width: 24rem; /* 384px */
208
209
  }
209
- @media (width >= 40rem) {
210
- max-width: 36rem; /* 576px, container @xl */
210
+ @media (width >= 40rem) { /* 640px, sm */
211
+ max-width: 36rem; /* 576px */
211
212
  }
212
- @media (width >= 48rem) {
213
- max-width: 42rem; /* 672px, container @2xl */
213
+ @media (width >= 48rem) { /* 768px, md */
214
+ max-width: 42rem; /* 672px */
214
215
  }
215
- @media (width >= 64rem) {
216
- max-width: 56rem; /* 896px, container @4xl */
216
+ @media (width >= 64rem) { /* 1024px, lg */
217
+ max-width: 56rem; /* 896px */
218
+ padding: 0 2rem;
219
+ }
220
+ }
221
+
222
+ .home .wrapper {
223
+ max-width: 30rem;
224
+ margin: 0 auto;
225
+ padding: 0 1rem;
226
+
227
+ @media (width >= 26rem) { /* 416px, xs */
228
+ max-width: 24rem; /* 384px */
229
+ }
230
+ @media (width >= 40rem) { /* 640px, sm */
231
+ max-width: 36rem; /* 576px */
232
+ }
233
+ @media (width >= 48rem) { /* 768px, md */
234
+ max-width: 42rem; /* 672px */
235
+ }
236
+ @media (width >= 64rem) { /* 1024px, lg */
237
+ max-width: 56rem; /* 896px */
238
+ padding: 0 2rem;
239
+ }
240
+ @media (width >= 80rem) { /* 1280px, xl */
241
+ max-width: 68rem; /* 1088px */
242
+ padding: 0 2rem;
243
+ }
244
+ @media (width >= 96rem) { /* 1536px, 2xl */
245
+ max-width: 80rem; /* 1344px */
217
246
  padding: 0 2rem;
218
247
  }
219
248
  }
data/index.markdown CHANGED
@@ -1,8 +1,8 @@
1
1
  ---
2
- layout: default
2
+ layout: home
3
3
  ---
4
4
 
5
- <div class="md:grid md:grid-cols-3 md:gap-4 md:items-start md:justify-center">
5
+ <div class="xl:max-w-[68rem] 2xl:max-w-[80rem] md:grid md:grid-cols-3 md:gap-4 md:items-start md:justify-center">
6
6
  <div class="md:col-start-1 md:col-span-2">
7
7
  <div class="">
8
8
  <h2 class="md:mt-0">Main</h2>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-report-dashboard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.19
4
+ version: 0.1.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tiffany Forkner
@@ -66,7 +66,9 @@ files:
66
66
  - _includes/playwright-stat.html
67
67
  - _includes/playwright-summary.html
68
68
  - _includes/release-note.html
69
+ - _layouts/base.html
69
70
  - _layouts/default.html
71
+ - _layouts/home.html
70
72
  - _layouts/page.html
71
73
  - _layouts/playwright-branch.html
72
74
  - _layouts/post.html