mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
20 lines
340 B
SCSS
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;
|
|
} |