Migrate bare division math to parens division

Bug: T369669
Change-Id: I37c84769edbae8bbb843e9be1846394753c126c8
This commit is contained in:
bwang 2024-08-02 13:32:20 -05:00
parent bb57b22eb3
commit a38fa06b5d
2 changed files with 2 additions and 2 deletions

View file

@ -5,5 +5,5 @@
background-size: 100%;
width: ~'calc(100% + @{spacing-300})';
margin: -@spacing-100 -@spacing-150 0 -@spacing-150;
aspect-ratio: 2 / 1;
aspect-ratio: ( 2 / 1 );
}

View file

@ -53,7 +53,7 @@ body {
// in order to make them relative to these browsers' defaults again.
// By doing this, the default Dynamic Type text size
// will appear identical to the browser's default text size.
@dynamic-type-scaling-factor: 16 / 17;
@dynamic-type-scaling-factor: ( 16 / 17 );
body {
font-size: @font-size-root * @dynamic-type-scaling-factor;