@farming-labs/nuxt-theme 0.0.57 → 0.0.59
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/package.json +2 -2
- package/styles/pixel-border.css +15 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@farming-labs/nuxt-theme",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.59",
|
|
4
4
|
"description": "Nuxt/Vue UI components for @farming-labs/docs — layout, sidebar, TOC, search, and theme toggle",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"docs",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"sugar-high": "^0.9.5",
|
|
63
|
-
"@farming-labs/docs": "0.0.
|
|
63
|
+
"@farming-labs/docs": "0.0.59"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"nuxt": ">=3.0.0",
|
package/styles/pixel-border.css
CHANGED
|
@@ -143,7 +143,7 @@ code:not(pre code) {
|
|
|
143
143
|
/* ─── Docs grid: sidebar (sticky left, full height) — no clipping ─────── */
|
|
144
144
|
@media (min-width: 1024px) {
|
|
145
145
|
.fd-layout {
|
|
146
|
-
grid-template-columns: var(--fd-sidebar-width) 1fr;
|
|
146
|
+
grid-template-columns: var(--fd-sidebar-width) minmax(0, 1fr);
|
|
147
147
|
}
|
|
148
148
|
.fd-sidebar {
|
|
149
149
|
position: sticky;
|
|
@@ -153,6 +153,20 @@ code:not(pre code) {
|
|
|
153
153
|
height: auto;
|
|
154
154
|
height: 100vh;
|
|
155
155
|
}
|
|
156
|
+
|
|
157
|
+
.fd-main {
|
|
158
|
+
min-width: 0;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.fd-page {
|
|
162
|
+
grid-template-columns: minmax(0, 1fr) var(--fd-toc-width);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.fd-page-article,
|
|
166
|
+
.fd-page-body {
|
|
167
|
+
max-width: none;
|
|
168
|
+
margin-inline: 0;
|
|
169
|
+
}
|
|
156
170
|
}
|
|
157
171
|
|
|
158
172
|
/* ─── Mobile: ensure sidebar drawer/content isn't clipped ───────────────── */
|