Solve deprecated warning using / for division outside of calc() (#976)

* replace / by *

* replace / by *

* add leading zero

* add leading zero
This commit is contained in:
Hans Kuijpers 2021-12-19 16:02:21 +01:00 committed by GitHub
parent de5307ce4d
commit 046afbb614
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ h4,
h5,
h6 {
margin-top: 0;
margin-bottom: $global-guttering/2;
margin-bottom: $global-guttering * 0.5;
font-weight: 400;
line-height: 1.2;
}
@ -152,7 +152,7 @@ label + p {
.logo {
display: block;
margin-bottom: $global-guttering/2;
margin-bottom: $global-guttering * 0.5;
}
.logo__img {
@ -161,7 +161,7 @@ label + p {
display: inline-block;
max-width: 100%;
vertical-align: top;
padding: $global-guttering/4 0;
padding: $global-guttering * 0.25 0;
}
.visible-ie {

View file

@ -131,7 +131,7 @@ $choices-z-index: 1;
position: relative;
display: inline-block;
margin-top: 0;
margin-right: -$choices-button-offset/2;
margin-right: -$choices-button-offset * 0.5;
margin-bottom: 0;
margin-left: $choices-button-offset;
padding-left: $choices-button-offset * 2;