42917806e9
removed unnecessary components, combined where necessary added each component to a folder, added individual css style modules optimized some component rendering flows removed functional components in favor of pure components linted and formatted all of the files
25 lines
444 B
SCSS
25 lines
444 B
SCSS
.avatar {
|
|
// @include avatar-radius();
|
|
display: block;
|
|
position: relative;
|
|
// background-color: $ui-base-color;
|
|
object-fit: cover;
|
|
|
|
&--inline {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
&-composite {
|
|
// @include avatar-radius();
|
|
overflow: hidden;
|
|
|
|
&>div {
|
|
// @include avatar-radius();
|
|
float: left;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
} |