@brillout/docpress 0.10.8 → 0.10.9
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/Layout.tsx +5 -2
- package/dist/types/Config.d.ts +1 -0
- package/package.json +1 -1
- package/types/Config.ts +1 -0
package/Layout.tsx
CHANGED
|
@@ -485,8 +485,11 @@ function NavLogo({ className }: { className: string }) {
|
|
|
485
485
|
>
|
|
486
486
|
<img
|
|
487
487
|
src={pageContext.meta.logoUrl}
|
|
488
|
-
|
|
489
|
-
|
|
488
|
+
style={{
|
|
489
|
+
height: iconSize,
|
|
490
|
+
width: iconSize,
|
|
491
|
+
...pageContext.config.navLogoStyle,
|
|
492
|
+
}}
|
|
490
493
|
onContextMenu={(ev) => {
|
|
491
494
|
if (!pageContext.config.pressKit) return // no /press page
|
|
492
495
|
if (window.location.pathname === '/press') return
|
package/dist/types/Config.d.ts
CHANGED
package/package.json
CHANGED