Skip to content

Commit 30a561c

Browse files
authored
Restore aligned grid column CSS (#30106)
Fixes #30097, regression from #29894.
1 parent 0c8b828 commit 30a561c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

web_src/css/modules/grid.css

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,15 @@
406406
align-self: center !important;
407407
}
408408

409+
.ui[class*="left aligned"].grid > .column,
410+
.ui[class*="left aligned"].grid > .row > .column,
411+
.ui.grid > [class*="left aligned"].row > .column,
412+
.ui.grid > [class*="left aligned"].column.column,
413+
.ui.grid > .row > [class*="left aligned"].column.column {
414+
text-align: left;
415+
align-self: inherit;
416+
}
417+
409418
.ui[class*="center aligned"].grid > .column,
410419
.ui[class*="center aligned"].grid > .row > .column,
411420
.ui.grid > [class*="center aligned"].row > .column,
@@ -418,6 +427,15 @@
418427
justify-content: center;
419428
}
420429

430+
.ui[class*="right aligned"].grid > .column,
431+
.ui[class*="right aligned"].grid > .row > .column,
432+
.ui.grid > [class*="right aligned"].row > .column,
433+
.ui.grid > [class*="right aligned"].column.column,
434+
.ui.grid > .row > [class*="right aligned"].column.column {
435+
text-align: right;
436+
align-self: inherit;
437+
}
438+
421439
.ui[class*="equal width"].grid > .column:not(.row),
422440
.ui[class*="equal width"].grid > .row > .column,
423441
.ui.grid > [class*="equal width"].row > .column {

0 commit comments

Comments
 (0)