1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_feature-list.scss
2022-10-02 17:36:49 +07:00

21 lines
296 B
SCSS

.feature-list {
display: flex;
/* OPTIONAL: Spacing between items */
margin: 0.5rem 0;
width: 100%;
}
.feature-list--reverse {
flex-direction: row-reverse;
}
.feature-list__image {
width: 2rem;
}
.feature-list__desc {
/* Take the remaining width */
flex: 1;
}