diff --git a/CHANGELOG.md b/CHANGELOG.md index 1df6fb53a7..1549c4e3e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ way to update this template, but currently, we follow a pattern: ## Upcoming version 2022-XX-XX +- [fix] the import of customMediaQueries.css was somehow missed with these components: + FieldReviewRating, SearchFiltersSecondary and TopbarMobileMenu. + [#1537](https://github.com/sharetribe/ftw-daily/pull/1537) + ## [v9.0.0] 2022-07-11 This is a major release since it includes a major update to sharetribe-scripts aka our fork of diff --git a/src/components/FieldReviewRating/FieldReviewRating.module.css b/src/components/FieldReviewRating/FieldReviewRating.module.css index 740c2550e1..90ad531a19 100644 --- a/src/components/FieldReviewRating/FieldReviewRating.module.css +++ b/src/components/FieldReviewRating/FieldReviewRating.module.css @@ -1,3 +1,5 @@ +@import '../../styles/customMediaQueries.css'; + .ratingFieldSet { border: none; padding: 0; diff --git a/src/components/SearchFiltersSecondary/SearchFiltersSecondary.module.css b/src/components/SearchFiltersSecondary/SearchFiltersSecondary.module.css index 02c9f79505..6b2da1757b 100644 --- a/src/components/SearchFiltersSecondary/SearchFiltersSecondary.module.css +++ b/src/components/SearchFiltersSecondary/SearchFiltersSecondary.module.css @@ -1,3 +1,5 @@ +@import '../../styles/customMediaQueries.css'; + .root { flex-grow: 1; display: flex; diff --git a/src/components/TopbarMobileMenu/TopbarMobileMenu.module.css b/src/components/TopbarMobileMenu/TopbarMobileMenu.module.css index 6c3f379781..e54d0aa860 100644 --- a/src/components/TopbarMobileMenu/TopbarMobileMenu.module.css +++ b/src/components/TopbarMobileMenu/TopbarMobileMenu.module.css @@ -1,3 +1,5 @@ +@import '../../styles/customMediaQueries.css'; + .root { flex-shrink: 0; display: flex;