@t2ca/gatsby-theme-showcase 1.0.52 → 1.0.53
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 +13 -1
package/package.json
CHANGED
package/src/components/header.js
CHANGED
|
@@ -84,7 +84,11 @@ export default ({
|
|
|
84
84
|
<img
|
|
85
85
|
src={isDark ? desktopLogoWhite : desktopLogo}
|
|
86
86
|
height={35}
|
|
87
|
+
width={108}
|
|
87
88
|
alt="T2 Media Logo"
|
|
89
|
+
sx={{
|
|
90
|
+
verticalAlign: ["bottom", "text-bottom"],
|
|
91
|
+
}}
|
|
88
92
|
/>
|
|
89
93
|
{/* <Img
|
|
90
94
|
fixed={isDark ? desktopLogoWhite : desktopLogo}
|
|
@@ -97,7 +101,15 @@ export default ({
|
|
|
97
101
|
/>*/}
|
|
98
102
|
</div>
|
|
99
103
|
<div sx={{ display: ["inherit", "none"] }}>
|
|
100
|
-
<img
|
|
104
|
+
<img
|
|
105
|
+
src={mobileLogo}
|
|
106
|
+
height={35}
|
|
107
|
+
width={35}
|
|
108
|
+
alt="T2 Media Logo"
|
|
109
|
+
sx={{
|
|
110
|
+
verticalAlign: ["bottom", "text-bottom"],
|
|
111
|
+
}}
|
|
112
|
+
/>
|
|
101
113
|
{/* <Img
|
|
102
114
|
fixed={mobileLogo}
|
|
103
115
|
sx={{
|