21 lines
405 B
SCSS
21 lines
405 B
SCSS
.avatar {
|
|
display: inline-block;
|
|
overflow: hidden; // Ensure page layout in Firefox should images fail to load
|
|
line-height: 1;
|
|
vertical-align: middle;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.avatar-small { border-radius: 2px; }
|
|
|
|
.avatar-link {
|
|
float: left;
|
|
line-height: 1;
|
|
}
|
|
|
|
// User for example on /stars and /user for grids of avatars
|
|
.avatar-group-item {
|
|
display: inline-block;
|
|
margin-bottom: 3px;
|
|
}
|