gatsby-theme-q3 3.6.8 → 3.7.3

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,38 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.7.3](https://github.com/3merge/q/compare/v3.7.2...v3.7.3) (2022-07-22)
7
+
8
+ **Note:** Version bump only for package gatsby-theme-q3
9
+
10
+
11
+
12
+
13
+
14
+ ## [3.7.1](https://github.com/3merge/q/compare/v3.7.0...v3.7.1) (2022-07-21)
15
+
16
+ **Note:** Version bump only for package gatsby-theme-q3
17
+
18
+
19
+
20
+
21
+
22
+ # [3.7.0](https://github.com/3merge/q/compare/v3.6.11...v3.7.0) (2022-07-21)
23
+
24
+ **Note:** Version bump only for package gatsby-theme-q3
25
+
26
+
27
+
28
+
29
+
30
+ ## [3.6.10](https://github.com/3merge/q/compare/v3.6.9...v3.6.10) (2022-07-05)
31
+
32
+ **Note:** Version bump only for package gatsby-theme-q3
33
+
34
+
35
+
36
+
37
+
6
38
  ## [3.6.8](https://github.com/3merge/q/compare/v3.6.7...v3.6.8) (2022-06-30)
7
39
 
8
40
 
@@ -30,9 +30,15 @@ const useStyle = (0, _core.makeStyles)(theme => ({
30
30
  invertLogo = false
31
31
  }) => {
32
32
  const output = {
33
- height: 95,
34
- width: 180,
33
+ height: 75,
34
+ maxHeight: 75,
35
+ width: 290,
35
36
  display: 'block',
37
+ [theme.breakpoints.down('md')]: {
38
+ height: 65,
39
+ maxHeight: 65,
40
+ width: 250
41
+ },
36
42
  '& img': {
37
43
  objectFit: 'contain',
38
44
  height: '100%',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-theme-q3",
3
- "version": "3.6.8",
3
+ "version": "3.7.3",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "peerDependencies": {
@@ -28,13 +28,13 @@
28
28
  "gatsby-plugin-robots-txt": "^1.6.14",
29
29
  "gatsby-plugin-sharp": "^4.2.0",
30
30
  "gatsby-plugin-sitemap": "^5.2.0",
31
- "gatsby-theme-q3-mui": "^3.6.8",
31
+ "gatsby-theme-q3-mui": "^3.7.3",
32
32
  "gatsby-transformer-sharp": "^4.2.0",
33
33
  "lodash": "^4.17.20",
34
34
  "process": "^0.11.10",
35
35
  "prop-types": "^15.7.2",
36
- "q3-ui-helpers": "^3.6.0",
37
- "q3-ui-locale": "^3.6.0",
36
+ "q3-ui-helpers": "^3.7.1",
37
+ "q3-ui-locale": "^3.7.1",
38
38
  "query-string": "^7.0.1",
39
39
  "react-helmet": "^6.1.0",
40
40
  "react-share": "^4.3.1",
@@ -42,5 +42,5 @@
42
42
  "transform-loader": "^0.2.4",
43
43
  "yarn": "^1.22.17"
44
44
  },
45
- "gitHead": "5ac3ce819bfabd5e96c514fa8a862e196d30fc0e"
45
+ "gitHead": "e50910b74b694a3f9ea4b9fa83dae29784fff49b"
46
46
  }
@@ -18,10 +18,17 @@ import useSiteMetaData from './useSiteMetaData';
18
18
  const useStyle = makeStyles((theme) => ({
19
19
  logo: ({ invertLogo = false }) => {
20
20
  const output = {
21
- height: 95,
22
- width: 180,
21
+ height: 75,
22
+ maxHeight: 75,
23
+ width: 290,
23
24
  display: 'block',
24
25
 
26
+ [theme.breakpoints.down('md')]: {
27
+ height: 65,
28
+ maxHeight: 65,
29
+ width: 250,
30
+ },
31
+
25
32
  '& img': {
26
33
  objectFit: 'contain',
27
34
  height: '100%',