@t2ca/gatsby-theme-showcase 1.0.50 → 1.0.52

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t2ca/gatsby-theme-showcase",
3
- "version": "1.0.50",
3
+ "version": "1.0.52",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "devDependencies": {
@@ -9,43 +9,47 @@ export default ({ name }) => {
9
9
  <Container>
10
10
  <footer
11
11
  sx={{
12
- display: "flex",
13
- flexWrap: "wrap",
12
+ display: ["flex"],
13
+ flexDirection: ["column", "row"],
14
+
14
15
  alignItems: "center",
15
16
  p: 2,
17
+
16
18
  variant: "styles.footer",
17
19
  }}
18
20
  >
19
- <div sx={{ p: 3 }}>{name}</div>
21
+ <div sx={{ py: 3, pl: 3 }}>{name}</div>
20
22
  <div sx={{ mx: "auto" }} />
21
- <a
22
- href="https://www.twitter.com/t2media"
23
- sx={{ variant: "styles.navlink", p: 3 }}
24
- aria-label="Twitter"
25
- >
26
- <FaTwitter />
27
- </a>
28
- <a
29
- href="https://www.instagram.com/t2.media"
30
- sx={{ variant: "styles.navlink", p: 3 }}
31
- aria-label="Instagram"
32
- >
33
- <FaInstagram />
34
- </a>
35
- <a
36
- href="https://www.github.com/t2media"
37
- sx={{ variant: "styles.navlink", p: 3 }}
38
- aria-label="GitHub"
39
- >
40
- <FaGithub />
41
- </a>
42
- <a
43
- href="https://www.linkedin.com/company/t2media"
44
- sx={{ variant: "styles.navlink", p: 3 }}
45
- aria-label="LinkedIn"
46
- >
47
- <FaLinkedin />
48
- </a>
23
+ <div>
24
+ <a
25
+ href="https://www.twitter.com/t2media"
26
+ sx={{ variant: "styles.navlink", p: 3 }}
27
+ aria-label="Twitter"
28
+ >
29
+ <FaTwitter />
30
+ </a>
31
+ <a
32
+ href="https://www.instagram.com/t2.media"
33
+ sx={{ variant: "styles.navlink", p: 3 }}
34
+ aria-label="Instagram"
35
+ >
36
+ <FaInstagram />
37
+ </a>
38
+ <a
39
+ href="https://www.github.com/t2media"
40
+ sx={{ variant: "styles.navlink", p: 3 }}
41
+ aria-label="GitHub"
42
+ >
43
+ <FaGithub />
44
+ </a>
45
+ <a
46
+ href="https://www.linkedin.com/company/t2media"
47
+ sx={{ variant: "styles.navlink", p: 3 }}
48
+ aria-label="LinkedIn"
49
+ >
50
+ <FaLinkedin />
51
+ </a>
52
+ </div>
49
53
  </footer>
50
54
  </Container>
51
55
  </Box>
@@ -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
- <Img
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
- <Img
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