docstra 1.1.1 → 1.1.2
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/dist/client/index.js +1 -1
- package/dist/client/index.mjs +1 -1
- package/dist/styles.css +6 -1
- package/package.json +1 -1
package/dist/client/index.js
CHANGED
|
@@ -214,7 +214,7 @@ function DocstraHeader() {
|
|
|
214
214
|
}
|
|
215
215
|
}, [openSidebar]);
|
|
216
216
|
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("header", { className: "sticky top-0 z-10 text-sm flex items-center justify-between border-b border-gray-100 h-18 px-4 md:px-6 bg-white", children: [
|
|
217
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
217
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("a", { href: docstraConfig.navbar?.logo?.link || "/", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
218
218
|
"img",
|
|
219
219
|
{
|
|
220
220
|
src: docstraConfig.navbar?.logo?.src || "/logo.png",
|
package/dist/client/index.mjs
CHANGED
|
@@ -172,7 +172,7 @@ function DocstraHeader() {
|
|
|
172
172
|
}
|
|
173
173
|
}, [openSidebar]);
|
|
174
174
|
return /* @__PURE__ */ jsxs3("header", { className: "sticky top-0 z-10 text-sm flex items-center justify-between border-b border-gray-100 h-18 px-4 md:px-6 bg-white", children: [
|
|
175
|
-
/* @__PURE__ */ jsx4(
|
|
175
|
+
/* @__PURE__ */ jsx4("a", { href: docstraConfig.navbar?.logo?.link || "/", children: /* @__PURE__ */ jsx4(
|
|
176
176
|
"img",
|
|
177
177
|
{
|
|
178
178
|
src: docstraConfig.navbar?.logo?.src || "/logo.png",
|
package/dist/styles.css
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
5
5
|
:root, :host {
|
|
6
|
-
--font-sans:
|
|
6
|
+
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
7
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
7
8
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
8
9
|
"Courier New", monospace;
|
|
9
10
|
--color-red-100: oklch(93.6% 0.032 17.717);
|
|
@@ -551,6 +552,10 @@
|
|
|
551
552
|
.rounded-md {
|
|
552
553
|
border-radius: var(--radius-md);
|
|
553
554
|
}
|
|
555
|
+
.rounded-t-lg {
|
|
556
|
+
border-top-left-radius: var(--radius-lg);
|
|
557
|
+
border-top-right-radius: var(--radius-lg);
|
|
558
|
+
}
|
|
554
559
|
.rounded-b-none {
|
|
555
560
|
border-bottom-right-radius: 0;
|
|
556
561
|
border-bottom-left-radius: 0;
|