@t2ca/gatsby-theme-showcase 1.0.73 → 1.0.75
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 +1 -1
- package/src/components/header.js +5 -1
package/package.json
CHANGED
package/src/components/header.js
CHANGED
|
@@ -137,7 +137,11 @@ export default ({
|
|
|
137
137
|
))}
|
|
138
138
|
</div>
|
|
139
139
|
|
|
140
|
-
{button ?
|
|
140
|
+
{button ? (
|
|
141
|
+
<div sx={{ display: ["none", "none", "inherit"], px: 3 }}>
|
|
142
|
+
{button}
|
|
143
|
+
</div>
|
|
144
|
+
) : null}
|
|
141
145
|
|
|
142
146
|
<ColorModeToggle />
|
|
143
147
|
</div>
|