@brillout/docpress 0.16.21 → 0.16.22
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 +7 -5
- package/icons/eyes.svg +1 -0
- package/icons/index.ts +1 -0
- package/package.json +1 -1
package/ExternalLinks.tsx
CHANGED
|
@@ -61,11 +61,13 @@ function ChangelogButton() {
|
|
|
61
61
|
<div
|
|
62
62
|
className="button"
|
|
63
63
|
style={{
|
|
64
|
-
background: '
|
|
64
|
+
background: '#ffffff4f',
|
|
65
|
+
fontFamily: 'monospace',
|
|
66
|
+
letterSpacing: -1,
|
|
65
67
|
display: 'flex',
|
|
66
68
|
alignItems: 'center',
|
|
67
|
-
paddingLeft:
|
|
68
|
-
paddingRight:
|
|
69
|
+
paddingLeft: 5,
|
|
70
|
+
paddingRight: 5,
|
|
69
71
|
paddingTop: 2,
|
|
70
72
|
paddingBottom: 2,
|
|
71
73
|
fontSize: '0.92em',
|
|
@@ -83,9 +85,9 @@ function ChangelogButton() {
|
|
|
83
85
|
color: 'var(--color-text)',
|
|
84
86
|
}}
|
|
85
87
|
>
|
|
86
|
-
|
|
88
|
+
{version}
|
|
87
89
|
</span>
|
|
88
|
-
<img className="decolorize-6" src={iconChangelog} height={
|
|
90
|
+
<img className="decolorize-6" src={iconChangelog} height={14} style={{ marginLeft: 5 }} />
|
|
89
91
|
</div>
|
|
90
92
|
</a>
|
|
91
93
|
)
|
package/icons/eyes.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><ellipse fill="#F5F8FA" cx="8.828" cy="18" rx="7.953" ry="13.281"/><path fill="#E1E8ED" d="M8.828 32.031C3.948 32.031.125 25.868.125 18S3.948 3.969 8.828 3.969 17.531 10.132 17.531 18s-3.823 14.031-8.703 14.031zm0-26.562C4.856 5.469 1.625 11.09 1.625 18s3.231 12.531 7.203 12.531S16.031 24.91 16.031 18 12.8 5.469 8.828 5.469z"/><circle fill="#8899A6" cx="6.594" cy="18" r="4.96"/><circle fill="#292F33" cx="6.594" cy="18" r="3.565"/><circle fill="#F5F8FA" cx="7.911" cy="15.443" r="1.426"/><ellipse fill="#F5F8FA" cx="27.234" cy="18" rx="7.953" ry="13.281"/><path fill="#E1E8ED" d="M27.234 32.031c-4.88 0-8.703-6.163-8.703-14.031s3.823-14.031 8.703-14.031S35.938 10.132 35.938 18s-3.824 14.031-8.704 14.031zm0-26.562c-3.972 0-7.203 5.622-7.203 12.531 0 6.91 3.231 12.531 7.203 12.531S34.438 24.91 34.438 18 31.206 5.469 27.234 5.469z"/><circle fill="#8899A6" cx="25" cy="18" r="4.96"/><circle fill="#292F33" cx="25" cy="18" r="3.565"/><circle fill="#F5F8FA" cx="26.317" cy="15.443" r="1.426"/></svg>
|
package/icons/index.ts
CHANGED
|
@@ -11,3 +11,4 @@ export { default as iconPlug } from './plug.svg'
|
|
|
11
11
|
export { default as iconLoudspeaker } from './loudspeaker.svg'
|
|
12
12
|
export { default as iconMegaphone } from './megaphone.svg'
|
|
13
13
|
export { default as iconCoin } from './coin.svg'
|
|
14
|
+
export { default as iconEyes } from './eyes.svg'
|