@t8/docsgen 0.1.64 → 0.1.65

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.
@@ -129,13 +129,14 @@ header {
129
129
 
130
130
  section {
131
131
  width: 50%;
132
+ min-height: 100vh;
132
133
  align-self: stretch;
133
134
  padding: 0;
134
135
  box-sizing: border-box;
135
136
  }
136
137
  section .section-content {
137
138
  max-width: var(--max-content-width);
138
- padding: 1em 3.5vw;
139
+ padding: 1em 3.5vw 2em;
139
140
  box-sizing: border-box;
140
141
  }
141
142
  section.intro-title {
@@ -156,6 +157,7 @@ section.intro {
156
157
  display: flex;
157
158
  flex-direction: column;
158
159
  justify-content: center;
160
+ background: color(from var(--c0) srgb r g b / 0.05);
159
161
  }
160
162
  section.intro .section-content {
161
163
  width: 100%;
@@ -164,18 +166,22 @@ section.intro .section-content {
164
166
  section {
165
167
  width: auto;
166
168
  max-width: 100%;
169
+ min-height: auto;
170
+ }
171
+ section .section-content {
172
+ max-width: auto;
167
173
  padding: var(--content-padding-y) var(--content-padding-x);
168
174
  }
169
175
  section.intro {
170
176
  align-items: center;
171
- border-left: none;
177
+ background: none transparent;
172
178
  }
173
- section.intro-title {
179
+ section.intro-title .section-content {
174
180
  padding-top: 2em;
175
181
  padding-bottom: 0;
176
182
  }
177
- section.intro,
178
- section.intro-title:last-child {
183
+ section.intro .section-content,
184
+ section.intro-title:last-child .section-content {
179
185
  padding-bottom: 2.5em;
180
186
  }
181
187
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t8/docsgen",
3
- "version": "0.1.64",
3
+ "version": "0.1.65",
4
4
  "description": "",
5
5
  "main": "dist/bin.js",
6
6
  "bin": {
package/src/css/index.css CHANGED
@@ -129,13 +129,14 @@ header {
129
129
 
130
130
  section {
131
131
  width: 50%;
132
+ min-height: 100vh;
132
133
  align-self: stretch;
133
134
  padding: 0;
134
135
  box-sizing: border-box;
135
136
  }
136
137
  section .section-content {
137
138
  max-width: var(--max-content-width);
138
- padding: 1em 3.5vw;
139
+ padding: 1em 3.5vw 2em;
139
140
  box-sizing: border-box;
140
141
  }
141
142
  section.intro-title {
@@ -156,6 +157,7 @@ section.intro {
156
157
  display: flex;
157
158
  flex-direction: column;
158
159
  justify-content: center;
160
+ background: color(from var(--c0) srgb r g b / 0.05);
159
161
  }
160
162
  section.intro .section-content {
161
163
  width: 100%;
@@ -164,18 +166,22 @@ section.intro .section-content {
164
166
  section {
165
167
  width: auto;
166
168
  max-width: 100%;
169
+ min-height: auto;
170
+ }
171
+ section .section-content {
172
+ max-width: auto;
167
173
  padding: var(--content-padding-y) var(--content-padding-x);
168
174
  }
169
175
  section.intro {
170
176
  align-items: center;
171
- border-left: none;
177
+ background: none transparent;
172
178
  }
173
- section.intro-title {
179
+ section.intro-title .section-content {
174
180
  padding-top: 2em;
175
181
  padding-bottom: 0;
176
182
  }
177
- section.intro,
178
- section.intro-title:last-child {
183
+ section.intro .section-content,
184
+ section.intro-title:last-child .section-content {
179
185
  padding-bottom: 2.5em;
180
186
  }
181
187
  }