Corrige les opérations dépréciées
This commit is contained in:
parent
a637ef49fb
commit
68def53fb4
@ -163,9 +163,9 @@ $stalfos-config: (
|
||||
'width': (
|
||||
'items': (
|
||||
'full': '100%',
|
||||
'half': percentage(1/2),
|
||||
'quarter': percentage(1/4),
|
||||
'third': percentage(1/3)
|
||||
'half': percentage(0.5),
|
||||
'quarter': percentage(0.25),
|
||||
'third': percentage(0.33)
|
||||
),
|
||||
'output': 'responsive',
|
||||
'property': 'width'
|
||||
|
@ -61,7 +61,7 @@ body {
|
||||
@include apply-utility('font', 'base');
|
||||
|
||||
// Strip the unit off the size ratio to generate a line height
|
||||
line-height: $line-height / ($line-height * 0 + 1);
|
||||
line-height: calc($line-height / 1);
|
||||
}
|
||||
|
||||
h1,
|
||||
|
Loading…
Reference in New Issue
Block a user