@brillout/docpress 0.16.18 → 0.16.20
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/ExternalLinks.tsx +6 -5
- package/Layout.tsx +1 -1
- package/package.json +1 -1
package/ExternalLinks.tsx
CHANGED
|
@@ -61,16 +61,17 @@ function ChangelogButton() {
|
|
|
61
61
|
<div
|
|
62
62
|
className="button"
|
|
63
63
|
style={{
|
|
64
|
-
background: '
|
|
64
|
+
background: 'transparent',
|
|
65
65
|
display: 'flex',
|
|
66
66
|
alignItems: 'center',
|
|
67
|
-
paddingLeft:
|
|
68
|
-
paddingRight:
|
|
69
|
-
paddingTop:
|
|
70
|
-
paddingBottom:
|
|
67
|
+
paddingLeft: 4,
|
|
68
|
+
paddingRight: 4,
|
|
69
|
+
paddingTop: 2,
|
|
70
|
+
paddingBottom: 2,
|
|
71
71
|
fontSize: '0.92em',
|
|
72
72
|
lineHeight: '1em',
|
|
73
73
|
marginLeft: 1,
|
|
74
|
+
borderRadius: 3,
|
|
74
75
|
}}
|
|
75
76
|
>
|
|
76
77
|
<span
|
package/Layout.tsx
CHANGED
|
@@ -193,7 +193,7 @@ function PageContent({ children }: { children: React.ReactNode }) {
|
|
|
193
193
|
{pageTitleParsed && !pageContext.resolved.pageDesign?.hideTitle && (
|
|
194
194
|
<div>
|
|
195
195
|
<EditLink className="show-only-on-desktop" style={{ float: 'right', marginTop: 15 }} />
|
|
196
|
-
<h1
|
|
196
|
+
<h1>{pageTitleParsed}</h1>
|
|
197
197
|
</div>
|
|
198
198
|
)}
|
|
199
199
|
{children}
|