shortcut.scss
831 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: 20%;
left: 2%;
z-index: 91;
color: #ffffff;
$btnSize: 100px;
.btn {
width: $btnSize;
height: $btnSize;
margin-bottom: 32px;
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:140px;
.contact {
background-color: transparent;
@extend .fcc;
color: #ffffff;
width: $contactWidth;
height: $contactWidth;
margin-left: -18px;
margin-top: -8px;
.img {
width: $contactWidth;
height: $contactWidth;
border-radius: 8px;
}
}
}