File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ $rd-placeholder-disabled-color: rgb(var(--#{$rd-prefix}text-color-rgb) / 8%) !de
19
19
20
20
$rd-font-weight-bold : 600 !default ;
21
21
22
- $enable-gap : false !default ;
22
+ $rd- enable-gap : false !default ;
Original file line number Diff line number Diff line change 1
1
@mixin polyfill-gap ($row-gap , $column-gap ) {
2
- @if $enable-gap == true {
2
+ @if $rd- enable-gap == true {
3
3
gap : #{$row-gap } #{$column-gap } ;
4
4
} @else {
5
5
@include polyfill-row-gap ($row-gap );
8
8
}
9
9
10
10
@mixin polyfill-row-gap ($row-gap ) {
11
- @if $enable-gap == true {
11
+ @if $rd- enable-gap == true {
12
12
row-gap : #{$row-gap } ;
13
13
} @else {
14
14
& {
22
22
}
23
23
24
24
@mixin polyfill-column-gap ($column-gap ) {
25
- @if $enable-gap == true {
25
+ @if $rd- enable-gap == true {
26
26
column-gap : #{$column-gap } ;
27
27
} @else {
28
28
& > * :not (:last-child ) {
You can’t perform that action at this time.
0 commit comments