You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just upgraded my project to Alpha 6, and oddly a lot of the spacing seems to have been removed. The only thing I changed between these two screenshots is installing alpha.5 vs alpha.6 using npm (on my Angular 2.4.1 project). In the alpha.5 screenshot, I included bootstrap-flex, but had to change that to bootstrap for the alpha.6 screenshot because of the naming change. That's the only difference.
Here is a before and after:
Here is the HTML:
<divclass="row"><divclass="col-sm-7">
...
</div><divclass="col-sm-5"><divclass="card card-danger"><divclass="card-header"><spanclass="font-weight-bold">27 Uncompleted Appointments</span></div><ulclass="list-group list-group-flush"><liclass="list-group-item text-truncate"><iclass="fa fa-calendar text-alert-red-color"></i>
Mark <b>Jacobs</b> (Sally)
<divclass="text-muted text-small">Mon, Jan 1, 2017 - 8am-9:30am</div></li><liclass="list-group-item text-truncate"><iclass="fa fa-calendar text-alert-red-color"></i>
Billy Bob <b>Thorton</b> (June)
<divclass="text-muted text-small">Mon, Jan 1, 2017 - 8am-9:30am</div></li><liclass="list-group-item text-truncate"><iclass="fa fa-calendar text-alert-red-color"></i><b>1st Assembly of God</b> (John Smith)
<divclass="text-muted text-small">Mon, Jan 1, 2017 - 8am-9:30am</div></li><liclass="list-group-item text-xs-center"><buttonclass="btn btn-danger">See All 27 <iclass="fa fa-caret-right"></i></button></li></ul></div><divclass="card card-danger"><divclass="card-header"><b>1 Pending Reservation</b></div><ulclass="list-group list-group-flush"><liclass="list-group-item"><iclass="fa fa-calendar text-alert-red-color"></i>
Mark <b>Jacobs</b> (Sally)
<divclass="text-muted text-small">Mon, Jan 8, 2017 - 11am-12:45pm</div></li></ul></div></div></div>
The text was updated successfully, but these errors were encountered:
Yeah, we'll need to play with the flexbox styles here more. My hunch is that we'll need to remove display: flex from .list-group-items and apply is only when needed (e.g., the custom content section in the list group docs).
For the original issue between cards, I've removed the default margin-bottom from .cards (and other components). Rather than rely on some arbitrary default spacing. you can now pick exactly what you need with our spacing utilities.
I just upgraded my project to Alpha 6, and oddly a lot of the spacing seems to have been removed. The only thing I changed between these two screenshots is installing alpha.5 vs alpha.6 using npm (on my Angular 2.4.1 project). In the alpha.5 screenshot, I included
bootstrap-flex
, but had to change that tobootstrap
for the alpha.6 screenshot because of the naming change. That's the only difference.Here is a before and after:
Here is the HTML:
The text was updated successfully, but these errors were encountered: