bootstrap/scss/_media.scss
Mark Otto b5c50d4aff reduce .media styles to their bare minimum
Sets minimum required flex styles (including an explicit starting alignment) and removes everything else.

- no need for .media-left and .media-right, we have padding utils
- no need for a .media-heading, we have margin
- no need for .media-object, we have display utils
- no need for .media-list, we have .list-unstyled util
2016-12-22 21:29:48 -08:00

9 lines
83 B
SCSS

.media {
display: flex;
align-items: flex-start;
}
.media-body {
flex: 1;
}