Browse Source

Adds justify content rules for centered cards #2520

pull/2536/head
Jack Lukic 9 years ago
parent
commit
6ab0e48084
2 changed files with 5 additions and 0 deletions
  1. 2
      RELEASE-NOTES.md
  2. 3
      src/definitions/views/card.less

2
RELEASE-NOTES.md

@ -4,7 +4,9 @@
**Bugs** **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. - **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. - **Dimmer** - Dimmer now removes variations like `blurring` and `inverted` when `destroy` is called.
- **Dropdown** - Removes accidental console.log statement in dropdown - **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 - **Modal** - `scrolling modal` now correctly inherits rules so that it appears at top of screen on mobile

3
src/definitions/views/card.less

@ -425,6 +425,9 @@
Centered Centered
--------------------*/ --------------------*/
.ui.centered.cards {
justify-content: center;
}
.ui.centered.card { .ui.centered.card {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;

Loading…
Cancel
Save