@arkenv/fumadocs-ui 0.0.4 → 0.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/css/theme.css +6 -1
- package/package.json +1 -1
package/css/theme.css
CHANGED
|
@@ -309,9 +309,14 @@ div:has(+ #nd-sidebar-mobile) {
|
|
|
309
309
|
z-index: 65 !important;
|
|
310
310
|
}
|
|
311
311
|
|
|
312
|
-
/* On mobile: push the search input box below the fixed header
|
|
312
|
+
/* On mobile: push the search input box below the fixed header,
|
|
313
|
+
and hide the ESC close hint (no keyboard on mobile) */
|
|
313
314
|
@media (max-width: 767px) {
|
|
314
315
|
[role="dialog"][data-state] {
|
|
315
316
|
top: calc(var(--fd-nav-height, 80px) + 0.5rem) !important;
|
|
316
317
|
}
|
|
318
|
+
|
|
319
|
+
[role="dialog"][data-state] button.font-mono {
|
|
320
|
+
display: none;
|
|
321
|
+
}
|
|
317
322
|
}
|