From d65d2e3775c7d860c22fc9a506706f18f51b649c Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Sun, 31 Jul 2016 13:19:39 -0400 Subject: [PATCH] Implements #4224 - justified centered grid fix --- RELEASE-NOTES.md | 1 + src/definitions/collections/grid.less | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 479bc8371..066833c48 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -15,6 +15,7 @@ - **Form** - `input` styles now apply to `type="file"` **thanks @coldfire79** #4074 - **Icon** - Fixes `talk` icon not working correctly **Thanks @anantogosh** #4354 - **Transition** - Removed unreachable code **Thanks @basarat** #4225 +- **Grid** - Fixed alignment in `centered justified grid** **Thanks @bretto36** #4224 ### Version 2.2.2 - July 07, 2016 diff --git a/src/definitions/collections/grid.less b/src/definitions/collections/grid.less index ebeb4a1e2..eefb5af07 100755 --- a/src/definitions/collections/grid.less +++ b/src/definitions/collections/grid.less @@ -951,9 +951,9 @@ text-align: center; justify-content: center; } -.ui.centered.grid > .column:not(.aligned):not(:justified):not(.row), -.ui.centered.grid > .row > .column:not(.aligned):not(:justified), -.ui.grid .centered.row > .column:not(.aligned):not(:justified) { +.ui.centered.grid > .column:not(.aligned):not(.justified):not(.row), +.ui.centered.grid > .row > .column:not(.aligned):not(.justified), +.ui.grid .centered.row > .column:not(.aligned):not(.justified) { text-align: left; }