Skip to content

Commit

Permalink
fix(business/accordion): remove media query breakpoints (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
efux authored and kyubisation committed Aug 21, 2019
1 parent 5b4c8a5 commit 0e3d16a
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@
}

@mixin expansionPanelBody() {
padding: $sbb-accordion-content-padding-mobile;
@include publicOnly() {
padding: $sbb-accordion-content-padding-mobile;

@include mq($from: tabletPortrait) {
padding: $sbb-accordion-content-padding;
}
@include mq($from: tabletPortrait) {
padding: $sbb-accordion-content-padding;
}

@include publicOnly() {
@include mq($from: desktop4k) {
font-size: toEm(1 * $scalingFactor4k);
}
Expand All @@ -59,6 +59,7 @@
}

@include businessOnly() {
padding: $sbb-accordion-content-padding;
line-height: pxToEm(23);
}
}

0 comments on commit 0e3d16a

Please sign in to comment.