mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 17:45:52 -05:00
Merge pull request #4277 from LLK/develop
Prepare release branch with latest changes from develop
This commit is contained in:
commit
2b8aafb401
4 changed files with 383 additions and 280 deletions
|
@ -1,6 +1,6 @@
|
|||
language: node_js
|
||||
node_js:
|
||||
- '8'
|
||||
- '12'
|
||||
sudo: required
|
||||
group: deprecated-2017Q4
|
||||
cache:
|
||||
|
|
641
package-lock.json
generated
641
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -108,7 +108,7 @@
|
|||
"lodash.uniqby": "4.7.0",
|
||||
"minilog": "2.0.8",
|
||||
"node-dir": "0.1.16",
|
||||
"node-sass": "4.6.1",
|
||||
"node-sass": "4.14.1",
|
||||
"pako": "0.2.8",
|
||||
"po2icu": "0.0.2",
|
||||
"postcss-loader": "2.0.10",
|
||||
|
@ -128,7 +128,7 @@
|
|||
"redux-mock-store": "^1.2.3",
|
||||
"redux-thunk": "2.0.1",
|
||||
"sass-loader": "6.0.6",
|
||||
"scratch-gui": "0.1.0-prerelease.20200729205656",
|
||||
"scratch-gui": "0.1.0-prerelease.20200805054801",
|
||||
"scratch-l10n": "latest",
|
||||
"selenium-webdriver": "3.6.0",
|
||||
"slick-carousel": "1.6.0",
|
||||
|
|
|
@ -48,20 +48,20 @@ $mobile: 480px;
|
|||
* ... intermediate-and-smaller |
|
||||
*/
|
||||
|
||||
$small: "only screen and (max-width : #{$mobile}-1)";
|
||||
$medium: "only screen and (min-width : #{$mobile}) and (max-width : #{$tabletPortrait}-1)";
|
||||
$intermediate: "only screen and (min-width : #{$tabletPortrait}) and (max-width : #{$desktop}-1)";
|
||||
$small: "only screen and (max-width : #{$mobile - 1})";
|
||||
$medium: "only screen and (min-width : #{$mobile}) and (max-width : #{$tabletPortrait - 1})";
|
||||
$intermediate: "only screen and (min-width : #{$tabletPortrait}) and (max-width : #{$desktop - 1})";
|
||||
$big: "only screen and (min-width : #{$desktop})";
|
||||
|
||||
$medium-and-smaller: "only screen and (max-width : #{$tabletPortrait}-1)";
|
||||
$intermediate-and-smaller: "only screen and (max-width : #{$desktop}-1)";
|
||||
$medium-and-smaller: "only screen and (max-width : #{$tabletPortrait - 1})";
|
||||
$intermediate-and-smaller: "only screen and (max-width : #{$desktop - 1})";
|
||||
|
||||
$medium-and-intermediate: "only screen and (min-width : #{$mobile}) and (max-width : #{$desktop}-1)";
|
||||
$medium-and-intermediate: "only screen and (min-width : #{$mobile}) and (max-width : #{$desktop - 1})";
|
||||
|
||||
/* Height */
|
||||
|
||||
$small-height: "only screen and (max-height : #{$mobile} - 1)";
|
||||
$medium-height: "only screen and (min-height : #{$mobile}) and (max-height : #{$tabletPortrait} - 1)";
|
||||
$small-height: "only screen and (max-height : #{$mobile - 1})";
|
||||
$medium-height: "only screen and (min-height : #{$mobile}) and (max-height : #{$tabletPortrait - 1})";
|
||||
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue