@t2ca/gatsby-theme-showcase 1.0.49 → 1.0.51
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
CHANGED
package/src/components/header.js
CHANGED
|
@@ -81,7 +81,12 @@ export default ({
|
|
|
81
81
|
)}
|
|
82
82
|
<Link to="/" sx={{ color: "inherit", textDecoration: "none" }}>
|
|
83
83
|
<div sx={{ display: ["none", "inherit"], pt: "4px" }}>
|
|
84
|
-
<
|
|
84
|
+
<img
|
|
85
|
+
src={isDark ? desktopLogoWhite : desktopLogo}
|
|
86
|
+
height={35}
|
|
87
|
+
alt="T2 Media Logo"
|
|
88
|
+
/>
|
|
89
|
+
{/* <Img
|
|
85
90
|
fixed={isDark ? desktopLogoWhite : desktopLogo}
|
|
86
91
|
sx={{
|
|
87
92
|
verticalAlign: ["bottom", "text-bottom"],
|
|
@@ -89,10 +94,11 @@ export default ({
|
|
|
89
94
|
alt={name}
|
|
90
95
|
fadeIn={false}
|
|
91
96
|
loading="eager"
|
|
92
|
-
|
|
97
|
+
/>*/}
|
|
93
98
|
</div>
|
|
94
99
|
<div sx={{ display: ["inherit", "none"] }}>
|
|
95
|
-
<
|
|
100
|
+
<img src={mobileLogo} height={35} alt="T2 Media Logo" />
|
|
101
|
+
{/* <Img
|
|
96
102
|
fixed={mobileLogo}
|
|
97
103
|
sx={{
|
|
98
104
|
verticalAlign: ["bottom", "text-bottom"],
|
|
@@ -100,7 +106,7 @@ export default ({
|
|
|
100
106
|
alt={name}
|
|
101
107
|
fadeIn={false}
|
|
102
108
|
loading="eager"
|
|
103
|
-
|
|
109
|
+
/>*/}
|
|
104
110
|
</div>
|
|
105
111
|
</Link>
|
|
106
112
|
<div
|