Skip to content

Commit 125af0f

Browse files
authored
deps update (#35)
1 parent b653fcb commit 125af0f

File tree

6 files changed

+1075
-1014
lines changed

6 files changed

+1075
-1014
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939

4040
steps:
4141
- uses: actions/checkout@v2
42-
- name: Use Node.js 14.17.0
42+
- name: Use Node.js 16.13.0
4343
uses: actions/setup-node@v2
4444
with:
45-
node-version: 14.17.0
45+
node-version: 16.13.0
4646
- run: npm ci
4747
- run: npm run lint:scss --silent
4848
- run: npm run lint:js --silent

assets/dist/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/dist/main.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/src/styles/components/_vwfontsize.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
@use "sass:math";
22

33
@mixin rsp-font($responsive, $min, $max: false, $fallback: false) {
4-
$responsive-unitless: $responsive / ($responsive - $responsive + 1);
4+
$responsive-unitless: math.div($responsive, $responsive - $responsive + 1);
55
$dimension: if(math.unit($responsive) == "vh", "height", "width");
6-
$min-breakpoint: $min / $responsive-unitless * 100;
6+
$min-breakpoint: math.div($min, $responsive-unitless * 100);
77

88
@media (max-#{$dimension}: #{$min-breakpoint}) {
99
font-size: $min;
1010
}
1111

1212
@if $max {
13-
$max-breakpoint: $max / $responsive-unitless * 100;
13+
$max-breakpoint: math.div($min, $responsive-unitless * 100);
1414

1515
@media (min-#{$dimension}: #{$max-breakpoint}) {
1616
font-size: $max;

0 commit comments

Comments
 (0)