@t8/docsgen 0.3.7 → 0.3.9
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.
- package/dist/css/base.css +2 -1
- package/dist/css/index.css +2 -4
- package/dist/css/section.css +1 -4
- package/package.json +1 -1
- package/src/css/base.css +2 -1
- package/src/css/index.css +2 -4
- package/src/css/section.css +1 -4
package/dist/css/base.css
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
:root {
|
|
40
|
-
--max-content-width:
|
|
40
|
+
--max-content-width: 45em;
|
|
41
41
|
--content-padding-x: 1.75rem;
|
|
42
42
|
--content-padding-y: 1.75rem;
|
|
43
43
|
--block-margin-y: 1em;
|
|
@@ -64,6 +64,7 @@ body {
|
|
|
64
64
|
}
|
|
65
65
|
@media (max-width: 840px) {
|
|
66
66
|
:root {
|
|
67
|
+
--max-content-width: 100%;
|
|
67
68
|
--content-padding-x: 0.85rem;
|
|
68
69
|
--content-padding-y: 1rem;
|
|
69
70
|
}
|
package/dist/css/index.css
CHANGED
|
@@ -16,7 +16,6 @@ body {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
main {
|
|
19
|
-
--max-content-width: 38em;
|
|
20
19
|
display: flex;
|
|
21
20
|
width: 100%;
|
|
22
21
|
align-items: flex-start;
|
|
@@ -27,7 +26,6 @@ main {
|
|
|
27
26
|
}
|
|
28
27
|
@media (max-width: 840px) {
|
|
29
28
|
main {
|
|
30
|
-
--max-content-width: 100%;
|
|
31
29
|
min-height: 100vh;
|
|
32
30
|
flex-direction: column;
|
|
33
31
|
margin: 0;
|
|
@@ -114,7 +112,7 @@ section .section-content {
|
|
|
114
112
|
}
|
|
115
113
|
section.intro-title {
|
|
116
114
|
display: flex;
|
|
117
|
-
width:
|
|
115
|
+
width: 36%;
|
|
118
116
|
flex-direction: column;
|
|
119
117
|
align-items: flex-end;
|
|
120
118
|
text-align: right;
|
|
@@ -141,7 +139,7 @@ section.intro-title:last-of-type .section-content {
|
|
|
141
139
|
}
|
|
142
140
|
section.intro {
|
|
143
141
|
display: flex;
|
|
144
|
-
width:
|
|
142
|
+
width: 64%;
|
|
145
143
|
flex-direction: column;
|
|
146
144
|
justify-content: center;
|
|
147
145
|
}
|
package/dist/css/section.css
CHANGED
|
@@ -135,7 +135,7 @@ footer {
|
|
|
135
135
|
|
|
136
136
|
main {
|
|
137
137
|
width: 75%;
|
|
138
|
-
max-width:
|
|
138
|
+
max-width: var(--max-content-width);
|
|
139
139
|
padding: var(--content-padding-y) var(--content-padding-x);
|
|
140
140
|
box-sizing: border-box;
|
|
141
141
|
}
|
|
@@ -145,9 +145,6 @@ main {
|
|
|
145
145
|
padding-bottom: 0;
|
|
146
146
|
}
|
|
147
147
|
}
|
|
148
|
-
.body.no-nav {
|
|
149
|
-
--max-content-width: 45em;
|
|
150
|
-
}
|
|
151
148
|
.body.no-nav > main {
|
|
152
149
|
width: auto;
|
|
153
150
|
margin: 0 auto;
|
package/package.json
CHANGED
package/src/css/base.css
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
:root {
|
|
40
|
-
--max-content-width:
|
|
40
|
+
--max-content-width: 45em;
|
|
41
41
|
--content-padding-x: 1.75rem;
|
|
42
42
|
--content-padding-y: 1.75rem;
|
|
43
43
|
--block-margin-y: 1em;
|
|
@@ -64,6 +64,7 @@ body {
|
|
|
64
64
|
}
|
|
65
65
|
@media (max-width: 840px) {
|
|
66
66
|
:root {
|
|
67
|
+
--max-content-width: 100%;
|
|
67
68
|
--content-padding-x: 0.85rem;
|
|
68
69
|
--content-padding-y: 1rem;
|
|
69
70
|
}
|
package/src/css/index.css
CHANGED
|
@@ -16,7 +16,6 @@ body {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
main {
|
|
19
|
-
--max-content-width: 38em;
|
|
20
19
|
display: flex;
|
|
21
20
|
width: 100%;
|
|
22
21
|
align-items: flex-start;
|
|
@@ -27,7 +26,6 @@ main {
|
|
|
27
26
|
}
|
|
28
27
|
@media (max-width: 840px) {
|
|
29
28
|
main {
|
|
30
|
-
--max-content-width: 100%;
|
|
31
29
|
min-height: 100vh;
|
|
32
30
|
flex-direction: column;
|
|
33
31
|
margin: 0;
|
|
@@ -114,7 +112,7 @@ section .section-content {
|
|
|
114
112
|
}
|
|
115
113
|
section.intro-title {
|
|
116
114
|
display: flex;
|
|
117
|
-
width:
|
|
115
|
+
width: 36%;
|
|
118
116
|
flex-direction: column;
|
|
119
117
|
align-items: flex-end;
|
|
120
118
|
text-align: right;
|
|
@@ -141,7 +139,7 @@ section.intro-title:last-of-type .section-content {
|
|
|
141
139
|
}
|
|
142
140
|
section.intro {
|
|
143
141
|
display: flex;
|
|
144
|
-
width:
|
|
142
|
+
width: 64%;
|
|
145
143
|
flex-direction: column;
|
|
146
144
|
justify-content: center;
|
|
147
145
|
}
|
package/src/css/section.css
CHANGED
|
@@ -135,7 +135,7 @@ footer {
|
|
|
135
135
|
|
|
136
136
|
main {
|
|
137
137
|
width: 75%;
|
|
138
|
-
max-width:
|
|
138
|
+
max-width: var(--max-content-width);
|
|
139
139
|
padding: var(--content-padding-y) var(--content-padding-x);
|
|
140
140
|
box-sizing: border-box;
|
|
141
141
|
}
|
|
@@ -145,9 +145,6 @@ main {
|
|
|
145
145
|
padding-bottom: 0;
|
|
146
146
|
}
|
|
147
147
|
}
|
|
148
|
-
.body.no-nav {
|
|
149
|
-
--max-content-width: 45em;
|
|
150
|
-
}
|
|
151
148
|
.body.no-nav > main {
|
|
152
149
|
width: auto;
|
|
153
150
|
margin: 0 auto;
|