Skip to content

Commit

Permalink
fix(leadspace): fixing tall super and short leadspace variations too
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-amorim committed Nov 22, 2024
1 parent 7127cf1 commit a596c70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/styles/scss/components/leadspace/_leadspace.scss
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ $btn-min-width: 26;
:host(#{$c4d-prefix}-leadspace)[size='super'] {
@include breakpoint(lg) {
.#{$c4d-prefix}--leadspace__overlay {
block-size: 40rem;
min-block-size: 40rem;
}
}

Expand Down Expand Up @@ -548,7 +548,7 @@ $btn-min-width: 26;
:host(#{$c4d-prefix}-leadspace)[size='short'] {
@include breakpoint(lg) {
.#{$c4d-prefix}--leadspace__overlay {
block-size: 20rem;
min-block-size: 20rem;
}
}

Expand Down Expand Up @@ -579,7 +579,7 @@ $btn-min-width: 26;
:host(#{$c4d-prefix}-leadspace)[size='tall'] {
@include breakpoint(lg) {
.#{$c4d-prefix}--leadspace__overlay {
block-size: 35rem;
min-block-size: 35rem;
}
}

Expand Down

0 comments on commit a596c70

Please sign in to comment.