UNPKG

427 BSCSSView Raw
1@import '../../styles/common/colors';
2
3.avatar-wrapper {
4 flex-shrink: 0;
5 opacity: 0;
6 overflow: hidden;
7 position: relative;
8 transition: opacity .25s ease-in;
9
10 &.loaded {
11 opacity: 1;
12 }
13
14 > div {
15 align-items: center;
16 display: flex;
17 justify-content: center;
18 user-select: none;
19
20 span {
21 color: $white;
22 position: relative;
23 text-transform: uppercase;
24 top: 2%;
25 }
26 }
27}