Skip to content

Commit

Permalink
fix: use sass variables
Browse files Browse the repository at this point in the history
  • Loading branch information
vpicone committed Jul 16, 2020
1 parent cea17c8 commit 43d1942
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
.do-dont-row + .do-dont-row {
--space: 0;
@include carbon--breakpoint-up("lg") {
--space: 32px;
--space: #{$spacing-07};
}
}

.do-dont-row [class*="--col"] {
@include carbon--breakpoint-down("lg") {
--space: 32px;
--space: #{$spacing-07};
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.#{$prefix}--feature-card {
position: relative;
--space: 32px;
--space: #{$spacing-07};
}

// #906
Expand Down

0 comments on commit 43d1942

Please sign in to comment.