@docsector/docsector-reader 2.0.5 → 2.0.6
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 +16 -1
package/bin/docsector.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docsector/docsector-reader",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
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
|
@@ -343,6 +343,10 @@ watch(() => route.fullPath, () => {
|
|
|
343
343
|
|
|
344
344
|
.d-submenu__toggle
|
|
345
345
|
flex: 0 0 auto
|
|
346
|
+
align-self: stretch
|
|
347
|
+
min-height: inherit
|
|
348
|
+
border-radius: 0
|
|
349
|
+
margin-right: 0
|
|
346
350
|
|
|
347
351
|
.on-left
|
|
348
352
|
margin-right: 5px
|
|
@@ -373,7 +377,18 @@ watch(() => route.fullPath, () => {
|
|
|
373
377
|
box-shadow: 0 -1px 2px rgba(0,0,0,0.12), 0 -2px 6px rgba(0,0,0,0.08)
|
|
374
378
|
|
|
375
379
|
.d-submenu__content
|
|
376
|
-
|
|
380
|
+
width: 100%
|
|
381
|
+
max-width: none
|
|
382
|
+
margin: 0
|
|
383
|
+
align-items: stretch
|
|
384
|
+
|
|
385
|
+
.toolbar-container
|
|
386
|
+
display: flex
|
|
387
|
+
align-items: center
|
|
388
|
+
|
|
389
|
+
.d-submenu__toggle
|
|
390
|
+
margin-right: 0
|
|
391
|
+
padding-right: 12px
|
|
377
392
|
|
|
378
393
|
#submenu a,
|
|
379
394
|
#submenu button
|