Skip to content

Commit

Permalink
fix: container props interfering with rendered style
Browse files Browse the repository at this point in the history
  • Loading branch information
abelflopes committed Mar 8, 2024
1 parent a9484a2 commit 9879648
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/components/container/src/styles/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@

.vertical {
@include define-css-var(container, spacing-y, 30px);
}

.small {
@include define-css-var(container, spacing-y, 16px);
}
&.small {
@include define-css-var(container, spacing-y, 16px);
}

.big {
@include define-css-var(container, spacing-y, 60px);
&.big {
@include define-css-var(container, spacing-y, 60px);
}
}

0 comments on commit 9879648

Please sign in to comment.