]>
Commit | Line | Data |
---|---|---|
1 | @import '_mixins'; | |
2 | ||
3 | .wrapper { | |
4 | width: 35px; | |
5 | height: 35px; | |
6 | min-width: 35px; | |
7 | min-height: 35px; | |
8 | position: relative; | |
9 | margin-right: 5px; | |
10 | ||
11 | a { | |
12 | @include disable-outline; | |
13 | } | |
14 | ||
15 | a img { | |
16 | height: 100%; | |
17 | object-fit: cover; | |
18 | position: absolute; | |
19 | top:50%; | |
20 | left:50%; | |
21 | border-radius: 50%; | |
22 | transform: translate(-50%,-50%) | |
23 | } | |
24 | ||
25 | a:nth-of-type(2) img { | |
26 | height: 60%; | |
27 | width: 60%; | |
28 | border: 2px solid var(--mainBackgroundColor); | |
29 | transform: translateX(15%); | |
30 | position: relative; | |
31 | } | |
32 | } |