File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ export function getColClass(params: GridColumnClassParams) {
7272 } = params ;
7373 return [
7474 GridColumnClassPrefix . Col ,
75- className ,
7675 alignSelf ,
7776 justifyContent && getJustifyClass ( justifyContent ) ,
7877 sizes && getSizeClass ( sizes ) ,
@@ -81,6 +80,7 @@ export function getColClass(params: GridColumnClassParams) {
8180 hidden && getVisibilityClasses ( hidden , GridColumnVisibilityClass . None ) ,
8281 visible && getVisibilityClasses ( visible , GridColumnVisibilityClass . Block ) ,
8382 reset && getResetClass ( ) ,
83+ className ,
8484 ]
8585 . filter ( Boolean )
8686 . join ( ' ' ) ;
Original file line number Diff line number Diff line change @@ -47,8 +47,10 @@ $darkSecondary: var(--yc-color-text-dark-secondary);
4747 }
4848
4949 & _centered {
50- margin : 0 auto ;
51- text-align : center ;
50+ @include add-specificity (&) {
51+ margin : 0 auto ;
52+ text-align : center ;
53+ }
5254
5355 #{$block } __link {
5456 a {
You can’t perform that action at this time.
0 commit comments