Skip to content

Commit

Permalink
Fix expanded margin content css var unapplied
Browse files Browse the repository at this point in the history
  • Loading branch information
kimsible authored and Chocobozzz committed Aug 11, 2020
1 parent 7034b3c commit e752c75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/sass/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ body {

--activatedActionButtonColor: #{$activated-action-button-color};

--expanded-horizontal-margin-content: $expanded-horizontal-margins;
--expanded-horizontal-margin-content: #{$expanded-horizontal-margins};

font-family: $main-fonts;
font-weight: $font-regular;
Expand Down Expand Up @@ -316,7 +316,7 @@ table {
.main-col {
&.expanded {
.margin-content {
--expanded-horizontal-margin-content: $expanded-horizontal-margins/2;
--expanded-horizontal-margin-content: #{$expanded-horizontal-margins/2};
}
}
}
Expand All @@ -327,7 +327,7 @@ table {
.main-col {
&, &.expanded {
.margin-content {
--expanded-horizontal-margin-content: $expanded-horizontal-margins/3;
--expanded-horizontal-margin-content: #{$expanded-horizontal-margins/3};
}

.sub-menu {
Expand Down

0 comments on commit e752c75

Please sign in to comment.