@t8/docsgen 0.1.30 → 0.1.31

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.
@@ -43,10 +43,12 @@ main {
43
43
  --max-content-width: 32em;
44
44
 
45
45
  display: flex;
46
+ width: 100%;
46
47
  align-items: flex-start;
47
48
  justify-content: center;
48
49
  padding: 0;
49
50
  margin: 6vh 0;
51
+ box-sizing: border-box;
50
52
  }
51
53
  @media (max-width: 840px) {
52
54
  main {
@@ -126,6 +128,7 @@ header {
126
128
  }
127
129
 
128
130
  section {
131
+ width: 50%;
129
132
  max-width: var(--max-content-width);
130
133
  padding: 0 2.5em;
131
134
  box-sizing: border-box;
@@ -144,6 +147,7 @@ section.intro-title {
144
147
  }
145
148
  @media (max-width: 840px) {
146
149
  section {
150
+ width: auto;
147
151
  max-width: 100%;
148
152
  padding: var(--content-padding-y) var(--content-padding-x);
149
153
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t8/docsgen",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
4
4
  "description": "",
5
5
  "main": "dist/bin.js",
6
6
  "bin": {
package/src/css/index.css CHANGED
@@ -43,10 +43,12 @@ main {
43
43
  --max-content-width: 32em;
44
44
 
45
45
  display: flex;
46
+ width: 100%;
46
47
  align-items: flex-start;
47
48
  justify-content: center;
48
49
  padding: 0;
49
50
  margin: 6vh 0;
51
+ box-sizing: border-box;
50
52
  }
51
53
  @media (max-width: 840px) {
52
54
  main {
@@ -126,6 +128,7 @@ header {
126
128
  }
127
129
 
128
130
  section {
131
+ width: 50%;
129
132
  max-width: var(--max-content-width);
130
133
  padding: 0 2.5em;
131
134
  box-sizing: border-box;
@@ -144,6 +147,7 @@ section.intro-title {
144
147
  }
145
148
  @media (max-width: 840px) {
146
149
  section {
150
+ width: auto;
147
151
  max-width: 100%;
148
152
  padding: var(--content-padding-y) var(--content-padding-x);
149
153
  }