From 6ab0e48084e86e6515fd1c30eb747c593cd2d796 Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Sat, 4 Jul 2015 13:12:11 -0400 Subject: [PATCH] Adds justify content rules for centered cards #2520 --- RELEASE-NOTES.md | 2 ++ src/definitions/views/card.less | 3 +++ 2 files changed, 5 insertions(+) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index d1d236b61d..210204adc6 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -4,7 +4,9 @@ **Bugs** +- **Card** - `centered cards` variation now works similar to `centered card`. #2520 - **Dropdown** - `restore defaults` in dropdown when used with multiple will now correctly clear other values selected that were not there on page load. +- **Checkbox** - Fixed issue in chrome where radio checkbox would appear incorrectly when no default value was selected #2505 - **Dimmer** - Dimmer now removes variations like `blurring` and `inverted` when `destroy` is called. - **Dropdown** - Removes accidental console.log statement in dropdown - **Modal** - `scrolling modal` now correctly inherits rules so that it appears at top of screen on mobile diff --git a/src/definitions/views/card.less b/src/definitions/views/card.less index f23694778c..aa69d51711 100755 --- a/src/definitions/views/card.less +++ b/src/definitions/views/card.less @@ -425,6 +425,9 @@ Centered --------------------*/ +.ui.centered.cards { + justify-content: center; +} .ui.centered.card { margin-left: auto; margin-right: auto;