Fix: Use scss math.div instead of deprecated /.
This commit is contained in:
parent
aa0d63fd44
commit
fb73dac224
|
@ -1,3 +1,5 @@
|
||||||
|
@use "sass:math";
|
||||||
|
|
||||||
// Grays
|
// Grays
|
||||||
$black: #000000;
|
$black: #000000;
|
||||||
$gray-darkest: #1c1c1c;
|
$gray-darkest: #1c1c1c;
|
||||||
|
@ -121,7 +123,7 @@ $error-card-link-hover-color: $error-card-link-color;
|
||||||
$error-card-link-focus-outline: 0.1em solid $error-card-link-hover-color;
|
$error-card-link-focus-outline: 0.1em solid $error-card-link-hover-color;
|
||||||
|
|
||||||
// Node map
|
// Node map
|
||||||
$node-map-aspect-ratio: 16 / 10;
|
$node-map-aspect-ratio: math.div(16, 10);
|
||||||
$node-map-border-radius: 0.75em;
|
$node-map-border-radius: 0.75em;
|
||||||
|
|
||||||
// Node preview
|
// Node preview
|
||||||
|
|
Loading…
Reference in a new issue