gatsby-matrix-theme 10.0.0 → 10.0.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## [10.0.1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v10.0.0...v10.0.1) (2022-11-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove reviewer img ([8b15778](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/8b157780ee2a49e07b8ed74d9faf0d2a8fa88aea))
7
+
8
+
9
+ ### Code Refactoring
10
+
11
+ * update mobile image size in content ([3f08518](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/3f085189caea4298a3ad5344313ecdd099f5aad8))
12
+
13
+
14
+ * Merge branch 'tm-3105-remove-img-reviewer' into 'master' ([51c574b](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/51c574b0c9d8e3b89044af2461d6933cd3f745e1))
15
+ * Merge branch 'tm-3053-resizing-content-img-mobile' into 'master' ([4c4d871](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/4c4d8714e289013ed15a80ff3fa59eb21a8b8062))
16
+
1
17
  # [10.0.0](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v9.0.3...v10.0.0) (2022-11-11)
2
18
 
3
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "10.0.0",
3
+ "version": "10.0.1",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "gatsby": "^4.20.0",
27
- "gatsby-core-theme": "15.0.0",
27
+ "gatsby-core-theme": "16.0.0",
28
28
  "gatsby-plugin-sharp": "^4.10.2",
29
29
  "gatsby-plugin-sitemap": "^3.3.0",
30
30
  "gatsby-transformer-sharp": "^4.10.0",
@@ -7,6 +7,16 @@
7
7
  height: auto !important;
8
8
  }
9
9
 
10
+ @include max(tablet) {
11
+ img {
12
+ display: block;
13
+ margin: 0 auto;
14
+ height: 343px !important;
15
+ width: 343px !important;
16
+ object-fit: cover;
17
+ }
18
+ }
19
+
10
20
  @include min(tablet) {
11
21
  width: 100%;
12
22
  padding: 0 !important;
@@ -59,7 +59,7 @@ const Main = ({ section = {}, pageContext = {}, showAuthor = true, exclOperator
59
59
  name={page.author?.name}
60
60
  date={page.updated_at ? page.updated_at : page.created_at}
61
61
  type={page?.template}
62
- authorImg={page?.author?.image}
62
+ // authorImg={page?.author?.image}
63
63
  readingTime={page.reading_time}
64
64
  link={page?.author?.profile_page_path}
65
65
  reviewer={page.reviewer_id && page?.reviewer}