@docsector/docsector-reader 2.0.4 → 2.0.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
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.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",
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
<q-btn class="filled" square icon="settings" aria-label="Configuration" @click="openSettingsDialog" />
|
|
19
19
|
</q-toolbar>
|
|
20
20
|
|
|
21
|
+
<q-separator v-if="sortedBooks.length > 0" class="d-book-tabs-separator" dark />
|
|
22
|
+
|
|
21
23
|
<q-tabs
|
|
22
24
|
v-if="sortedBooks.length > 0"
|
|
23
25
|
:model-value="activeBookTab"
|
|
@@ -328,6 +330,8 @@ store.commit('page/resetAnchors')
|
|
|
328
330
|
padding: 0
|
|
329
331
|
.q-tabs
|
|
330
332
|
margin-top: 2px
|
|
333
|
+
.d-book-tabs-separator
|
|
334
|
+
opacity: 0.25
|
|
331
335
|
.d-book-tabs
|
|
332
336
|
.q-tab__indicator
|
|
333
337
|
background-color: currentColor
|