@docsector/docsector-reader 0.10.4 → 0.10.5
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/bin/docsector.js +1 -1
- package/package.json +1 -1
- package/src/components/DPage.vue +5 -0
package/bin/docsector.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docsector/docsector-reader",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.5",
|
|
4
4
|
"description": "A documentation rendering engine built with Vue 3, Quasar v2 and Vite. Transform Markdown into beautiful, navigable documentation sites.",
|
|
5
5
|
"productName": "Docsector Reader",
|
|
6
6
|
"author": "Rodrigo de Araujo Vieira",
|
package/src/components/DPage.vue
CHANGED
|
@@ -238,6 +238,10 @@ onBeforeUnmount(() => {
|
|
|
238
238
|
.content > div.scroll
|
|
239
239
|
min-height: calc(100vh - 86px)
|
|
240
240
|
|
|
241
|
+
.content > div.scroll > div.q-scrollarea__content
|
|
242
|
+
max-width: 100%
|
|
243
|
+
box-sizing: border-box
|
|
244
|
+
|
|
241
245
|
.content:not(.no-padding) > div.scroll > div.q-scrollarea__content
|
|
242
246
|
padding: 15px
|
|
243
247
|
|
|
@@ -245,6 +249,7 @@ onBeforeUnmount(() => {
|
|
|
245
249
|
min-height: calc(100vh - 86px) !important
|
|
246
250
|
|
|
247
251
|
#scroll-container
|
|
252
|
+
width: 100%
|
|
248
253
|
max-width: 1200px
|
|
249
254
|
margin: auto
|
|
250
255
|
|