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
1919
2020$rd-font-weight-bold : 600 !default ;
2121
22- $enable-gap : false !default ;
22+ $rd- enable-gap : false !default ;
Original file line number Diff line number Diff line change 11@mixin polyfill-gap ($row-gap , $column-gap ) {
2- @if $enable-gap == true {
2+ @if $rd- enable-gap == true {
33 gap : #{$row-gap } #{$column-gap } ;
44 } @else {
55 @include polyfill-row-gap ($row-gap );
88}
99
1010@mixin polyfill-row-gap ($row-gap ) {
11- @if $enable-gap == true {
11+ @if $rd- enable-gap == true {
1212 row-gap : #{$row-gap } ;
1313 } @else {
1414 & {
2222}
2323
2424@mixin polyfill-column-gap ($column-gap ) {
25- @if $enable-gap == true {
25+ @if $rd- enable-gap == true {
2626 column-gap : #{$column-gap } ;
2727 } @else {
2828 & > * :not (:last-child ) {
You can’t perform that action at this time.
0 commit comments