@t8/docsgen 0.1.66 → 0.1.68

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.
@@ -53,7 +53,8 @@ main {
53
53
  main {
54
54
  --max-content-width: 100%;
55
55
 
56
- display: block;
56
+ min-height: 100vh;
57
+ flex-direction: column;
57
58
  margin: 0;
58
59
  }
59
60
  }
@@ -172,19 +173,22 @@ section.intro .section-content {
172
173
  max-width: auto;
173
174
  padding: var(--content-padding-y) var(--content-padding-x);
174
175
  }
175
- section.intro {
176
- align-items: center;
177
- background: none transparent;
178
- }
179
176
  section.intro-title .section-content {
180
177
  min-height: auto;
181
178
  padding-top: 2em;
182
- padding-bottom: 0;
179
+ padding-bottom: 1.5em;
183
180
  }
184
- section.intro .section-content,
185
181
  section.intro-title:last-child .section-content {
186
182
  padding-bottom: 2.5em;
187
183
  }
184
+ section.intro {
185
+ flex: auto;
186
+ justify-content: flex-start;
187
+ align-items: center;
188
+ }
189
+ section.intro .section-content {
190
+ padding-top: 0.5em;
191
+ }
188
192
  }
189
193
  .features {
190
194
  --link-color: color(from var(--c0) srgb r g b / 0.55);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t8/docsgen",
3
- "version": "0.1.66",
3
+ "version": "0.1.68",
4
4
  "description": "",
5
5
  "main": "dist/bin.js",
6
6
  "bin": {
package/src/css/index.css CHANGED
@@ -53,7 +53,8 @@ main {
53
53
  main {
54
54
  --max-content-width: 100%;
55
55
 
56
- display: block;
56
+ min-height: 100vh;
57
+ flex-direction: column;
57
58
  margin: 0;
58
59
  }
59
60
  }
@@ -172,19 +173,22 @@ section.intro .section-content {
172
173
  max-width: auto;
173
174
  padding: var(--content-padding-y) var(--content-padding-x);
174
175
  }
175
- section.intro {
176
- align-items: center;
177
- background: none transparent;
178
- }
179
176
  section.intro-title .section-content {
180
177
  min-height: auto;
181
178
  padding-top: 2em;
182
- padding-bottom: 0;
179
+ padding-bottom: 1.5em;
183
180
  }
184
- section.intro .section-content,
185
181
  section.intro-title:last-child .section-content {
186
182
  padding-bottom: 2.5em;
187
183
  }
184
+ section.intro {
185
+ flex: auto;
186
+ justify-content: flex-start;
187
+ align-items: center;
188
+ }
189
+ section.intro .section-content {
190
+ padding-top: 0.5em;
191
+ }
188
192
  }
189
193
  .features {
190
194
  --link-color: color(from var(--c0) srgb r g b / 0.55);