1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 18:56:29 +02:00
Files
csslayout/styles/patterns/_avatar-list.scss
2022-09-19 11:34:32 +07:00

28 lines
471 B
SCSS

.avatars {
display: flex;
justify-content: center;
height: 2rem;
width: 100%;
}
.avatars__item {
margin-left: -0.25rem;
}
.avatars__image {
background-color: #BBB;
box-shadow: 0 0 0 0.25rem #FFF;
color: #FFF;
font-size: 0.75rem;
/* Rounded border */
border-radius: 50%;
/* Center the content */
align-items: center;
display: flex;
justify-content: center;
/* Size */
height: 2rem;
width: 2rem;
}