Use multiplication for secondary-actions margin and padding
This avoids using the sass division operator, which is deprecated.
This commit is contained in:
parent
79868aeae7
commit
ffe637f23d
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue