We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0add8cc commit 783b7c4Copy full SHA for 783b7c4
packages/components/src/components/accordion/_accordion.scss
@@ -98,12 +98,17 @@
98
// Transition property for when the accordion closes
99
transition: padding motion(standard, productive) $duration--fast-02;
100
padding-left: $carbon--spacing-05;
101
- padding-right: 25%;
+ padding-right: $carbon--spacing-05;
102
103
- @include carbon--breakpoint-down('md') {
+ // Custom breakpoints based on issue #4993
104
+ @include carbon--breakpoint-up(480px) {
105
padding-right: $carbon--spacing-09;
106
}
107
108
+ @include carbon--breakpoint-up(640px) {
109
+ padding-right: 25%;
110
+ }
111
+
112
p {
113
@include type-style('body-long-01');
114
0 commit comments