Missed two slash as division instances
This commit is contained in:
parent
6752b00758
commit
7a52fa5afd
2 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.CharacterUnit {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: $unit / 2;
|
||||
gap: calc($unit / 2);
|
||||
max-width: 200px;
|
||||
|
||||
&.editable .CharacterImage:hover {
|
||||
|
|
|
|||
Loading…
Reference in a new issue