Skip to content

Commit

Permalink
Merge branch 'master' into text-input-height-variations
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan authored Jan 16, 2020
2 parents 85f1205 + 543e259 commit 69f9508
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions packages/components/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -2162,6 +2162,7 @@ Generate a media query up to the width of the given breakpoint name
- **Used by**:
- [carbon--breakpoint-between [mixin]](#carbon--breakpoint-between-mixin)
- [carbon--breakpoint [mixin]](#carbon--breakpoint-mixin)
- [accordion [mixin]](#accordion-mixin)

### ✅carbon--breakpoint-down [mixin]

Expand Down Expand Up @@ -2206,7 +2207,6 @@ Generate a media query for the maximum width of the given styles
- [carbon--is-smallest-breakpoint [function]](#carbon--is-smallest-breakpoint-function)
- **Used by**:
- [carbon--breakpoint-between [mixin]](#carbon--breakpoint-between-mixin)
- [accordion [mixin]](#accordion-mixin)
- [carbon-header [mixin]](#carbon-header-mixin)
- [carbon-side-nav [mixin]](#carbon-side-nav-mixin)

Expand Down Expand Up @@ -12655,12 +12655,17 @@ Accordion styles
// Transition property for when the accordion closes
transition: padding motion(standard, productive) $duration--fast-02;
padding-left: $carbon--spacing-05;
padding-right: 25%;
padding-right: $carbon--spacing-05;

@include carbon--breakpoint-down('md') {
// Custom breakpoints based on issue #4993
@include carbon--breakpoint-up(480px) {
padding-right: $carbon--spacing-09;
}

@include carbon--breakpoint-up(640px) {
padding-right: 25%;
}

p {
@include type-style('body-long-01');
}
Expand Down Expand Up @@ -12755,7 +12760,7 @@ Accordion styles

- **Group**: [accordion](#accordion)
- **Requires**:
- [carbon--breakpoint-down [mixin]](#carbon--breakpoint-down-mixin)
- [carbon--breakpoint-up [mixin]](#carbon--breakpoint-up-mixin)
- [prefix [variable]](#prefix-variable)
- [ui-03 [variable]](#ui-03-variable)
- [text-01 [variable]](#text-01-variable)
Expand Down

0 comments on commit 69f9508

Please sign in to comment.