@t2ca/gatsby-theme-showcase 1.0.99 → 1.0.100

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.99",
3
+ "version": "1.0.100",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "devDependencies": {
@@ -30,7 +30,7 @@
30
30
  "@theme-ui/sidenav": "^0.4.0-rc.5",
31
31
  "@theme-ui/typography": "^0.4.0-rc.5",
32
32
  "framer-motion": "^3.2.2-rc.1",
33
- "gatsby": "^2.31.1",
33
+ "gatsby": "^2.33.0-next.0",
34
34
  "gatsby-image": "^2.2.7",
35
35
  "gatsby-plugin-emotion": "^5.1.0",
36
36
  "gatsby-plugin-react-helmet": "^3.1.21",
@@ -1,13 +1,13 @@
1
1
  /** @jsx jsx */
2
2
  import { jsx } from "theme-ui"
3
3
 
4
- const Wave = ({ background = "mBg" }) => {
4
+ const Wave = ({ background = "mBg", height = 300 }) => {
5
5
  return (
6
6
  <div sx={{ bg: `mBg` }}>
7
7
  <svg
8
8
  sx={{ bg: "mBg" }}
9
9
  xmlns="http://www.w3.org/2000/svg"
10
- viewBox="0 0 1400 300"
10
+ viewBox={`0 0 1400 ${height}`}
11
11
  >
12
12
  <path
13
13
  sx={{ fill: background }}