mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-25 04:13:44 +03:00
30 lines
460 B
SCSS
30 lines
460 B
SCSS
.pledge-contributors {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
list-style: none;
|
|
margin-left: 0;
|
|
|
|
h3 {
|
|
margin-top: 0;
|
|
font-size: ms(-1);
|
|
color: $color__text-lighter;
|
|
}
|
|
|
|
li {
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: 0 1em 1em 0;
|
|
}
|
|
|
|
.pledge-contributor__avatar {
|
|
display: inline-block;
|
|
background: $color-gray-light-700;
|
|
border-radius: $avatar__border-radius;
|
|
|
|
img {
|
|
vertical-align: middle;
|
|
border-radius: $avatar__border-radius;
|
|
}
|
|
}
|
|
}
|