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

View file

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