Missed two slash as division instances

This commit is contained in:
Justin Edmund 2022-03-06 14:13:22 -08:00
parent 6752b00758
commit 7a52fa5afd
2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@
.Switch {
$height: 34px;
background: $grey-70;
border-radius: $height / 2;
border-radius: calc($height / 2);
border: none;
position: relative;
width: 58px;
@ -86,7 +86,7 @@
display: flex;
flex-direction: column;
flex-grow: 1;
gap: $unit / 2;
gap: calc($unit / 2);
label {
color: $grey-00;

View file

@ -1,7 +1,7 @@
.CharacterUnit {
display: flex;
flex-direction: column;
gap: $unit / 2;
gap: calc($unit / 2);
max-width: 200px;
&.editable .CharacterImage:hover {