Skip to content
This repository has been archived by the owner on Nov 29, 2022. It is now read-only.

Commit

Permalink
v1.88.0: New helper to _rwd.scss for hiding items on tiny devices (#287)
Browse files Browse the repository at this point in the history
* v1.88.0: New helper to _rwd.scss for hiding items on tiny devices

* v1.88.0: Stylelint disable rule for Firefox-only element

* v1.88.0: Fix changelog

* v1.88.0 - Remove underscore that italicised changelog entry

* v1.88.0 - feedback
  • Loading branch information
InsungMulumba authored Feb 5, 2020
1 parent c6397b4 commit 2c72839
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)


v1.88.0
------------------------------
*February 05, 2020*

### Added
- New helper to rwd.scss for hiding items on tiny devices
- Stylelint disable rule for Firefox only element as it was throwing error when running Homeweb

v1.87.0
------------------------------
*January 30, 2020*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@justeat/fozzie",
"title": "Fozzie – Just Eat UI Web Framework",
"description": "UI Web Framework for the Just Eat Global Platform",
"version": "1.87.0",
"version": "1.88.0",
"main": "dist/js/index.js",
"files": [
"dist/js",
Expand Down
1 change: 1 addition & 0 deletions src/scss/components/optional/_overflow-carousel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@

.c-overflowCarousel--hideScroll {
@include media('>=wide') {
/* stylelint-disable-next-line property-no-unknown */
scrollbar-width: none;
}
}
Expand Down
6 changes: 6 additions & 0 deletions src/scss/trumps/_rwd.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@
}
}

.u-showAboveTiny {
@include media('<=tiny') {
display: none !important;
}
}

.u-showAboveMid,
.no-js .u-showAboveMid--noJS {
@include media('<mid') {
Expand Down

0 comments on commit 2c72839

Please sign in to comment.