1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_property-list.scss
Phuoc Nguyen 37a6729d08 feat: Chip
2022-09-21 08:55:08 +07:00

20 lines
340 B
SCSS

.property-list {
/* Content is center horizontally */
align-items: center;
display: flex;
border-bottom: 1px solid #d1d5db;
/* Spacing */
margin: 0;
padding: 0.5rem 0;
width: 100%;
}
.property-list__key {
/* Take the remaining width */
flex: 1;
}
.property-list__value {
margin-left: 0.5rem;
}