mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
28 lines
433 B
SCSS
28 lines
433 B
SCSS
.status-light {
|
|
/* Center the content */
|
|
align-items: center;
|
|
display: flex;
|
|
|
|
/* Demo */
|
|
width: 8rem;
|
|
}
|
|
|
|
.status-light__status {
|
|
/* Background color */
|
|
background-color: #16a34a;
|
|
|
|
/* Rounded border */
|
|
border-radius: 9999px;
|
|
|
|
/* Size */
|
|
height: 0.5rem;
|
|
width: 0.5rem;
|
|
|
|
/* Spacing */
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.status-light__content {
|
|
/* Take available width */
|
|
flex: 1;
|
|
} |