Use multiplication for secondary-actions margin and padding

This avoids using the sass division operator, which is deprecated.
This commit is contained in:
Andy Allan 2023-09-06 18:23:22 +01:00
parent 79868aeae7
commit ffe637f23d

View file

@ -1139,9 +1139,9 @@ nav.secondary-actions {
flex-basis: auto;
list-style: none;
border-left: 1px solid $grey;
padding-left: $lineheight/2;
margin-right: $lineheight/2;
margin-bottom: $lineheight/8;
padding-left: $lineheight * 0.5;
margin-right: $lineheight * 0.5;
margin-bottom: $lineheight * 0.125;
}
}
}