shortcut2.scss
836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';
.comp {
position: fixed;
bottom: 30%;
right: -20px;
z-index: 91;
color: #ffffff;
$btnSize: 126px;
.btn {
width: $btnSize;
height: $btnSize;
margin-bottom: 12px;
border-radius: $btnSize;
display: flex;
justify-content: center;
align-items: center;
}
.iconfont {
font-size: 64px;
}
.pics {
height: $btnSize;
}
.point {
background-color: rgba($color: #000000, $alpha: 0.6);
}
$contactWidth:172px;
.contact {
background-color: transparent;
@extend .fcc;
color: #ffffff;
width: $contactWidth;
height: $contactWidth;
margin-left: -26px;
margin-top: -18px;
.img {
width: $contactWidth;
height: $contactWidth;
border-radius: 8px;
}
}
}