varvara-typedoc-theme 0.3.11 → 0.3.12
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/assets/overrides.css +10 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/assets/overrides.css
CHANGED
|
@@ -86,6 +86,10 @@ dialog {
|
|
|
86
86
|
flex: 1;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
+
#tsd-sidebar-links a {
|
|
90
|
+
margin-bottom: 0;
|
|
91
|
+
}
|
|
92
|
+
|
|
89
93
|
.tsd-navigation {
|
|
90
94
|
margin-bottom: var(--va-space-4);
|
|
91
95
|
|
|
@@ -94,6 +98,12 @@ dialog {
|
|
|
94
98
|
}
|
|
95
99
|
}
|
|
96
100
|
|
|
101
|
+
@media (min-width: 769px) {
|
|
102
|
+
.tsd-navigation .tsd-nav-link {
|
|
103
|
+
display: none;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
97
107
|
.site-menu {
|
|
98
108
|
margin-top: 0;
|
|
99
109
|
}
|
package/dist/index.js
CHANGED
|
@@ -384,12 +384,12 @@ function sidebarLinks(context) {
|
|
|
384
384
|
class: "tsd-navigation va-button-group"
|
|
385
385
|
}, links.map(([label, url]) => /* @__PURE__ */ JSX4.createElement("a", {
|
|
386
386
|
href: url,
|
|
387
|
-
class: "va-button"
|
|
387
|
+
class: "va-button tsd-nav-link"
|
|
388
388
|
}, /* @__PURE__ */ JSX4.createElement("span", null, label), /* @__PURE__ */ JSX4.createElement("i", {
|
|
389
389
|
class: "va-icon va-icon--external"
|
|
390
390
|
}))), navLinks.map(([label, url]) => /* @__PURE__ */ JSX4.createElement("a", {
|
|
391
391
|
href: url,
|
|
392
|
-
class: "va-button"
|
|
392
|
+
class: "va-button tsd-nav-link"
|
|
393
393
|
}, /* @__PURE__ */ JSX4.createElement("span", null, label), /* @__PURE__ */ JSX4.createElement("i", {
|
|
394
394
|
class: "va-icon va-icon--external"
|
|
395
395
|
}))));
|