mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-23 22:03:39 +00:00
Migrate bare division math to parens division
Bug: T369669 Change-Id: I37c84769edbae8bbb843e9be1846394753c126c8
This commit is contained in:
parent
bb57b22eb3
commit
a38fa06b5d
|
@ -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 );
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue