mirror of
https://github.com/status-im/open-bounty.git
synced 2025-02-19 12:57:05 +00:00
17 lines
387 B
SCSS
17 lines
387 B
SCSS
|
// .avatar-parent-child is when you see a small avatar at the bottom right
|
||
|
// corner of a larger avatar.
|
||
|
//
|
||
|
// No Styleguide version
|
||
|
.avatar-parent-child {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.avatar-child {
|
||
|
position: absolute;
|
||
|
right: -15%;
|
||
|
bottom: -9%;
|
||
|
background-color: $bg-white; // For transparent backgrounds
|
||
|
border-radius: 2px;
|
||
|
box-shadow: -2px -2px 0 rgba(255, 255, 255, 0.8);
|
||
|
}
|