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
@import "./src/themes/variables";
.modal-container{
display: flex;
flex-direction: column;
align-items: center;
&__icon {
color: $btn-color;
span{
font-size: 100px;
}
}
&__title {
font-size: 22px;
font-weight: bold;
}
&__link {
font-size: 14px;
color: $btn-color;
text-decoration: none;
cursor: pointer;
}
&__btn {
height: 48px;
background: $btn-color;
color: $white-color;
border-radius: 8px;
width: 100%;
border: none;
text-transform: capitalize;
font-size: 20px;
margin-top: 35px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
}