mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
19 lines
273 B
SCSS
19 lines
273 B
SCSS
.media-object {
|
|
/* Align sub-items to top */
|
|
align-items: start;
|
|
display: flex;
|
|
|
|
/* Demo */
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.media-object__media {
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.media-object__content {
|
|
/* Take the remaining width */
|
|
flex: 1;
|
|
}
|