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
| .holder{
| position: relative;
| display: inline-block;
| width: 80px;
| height: 80px;
| text-align: center;
| }
|
| .container .uiContainerManager{
| display : none !important;
| }
| .toast{
| border: 1px solid #c9c9c9;
| border-radius: 10px;
| width: 50%;
| margin: 0 auto;
| font-size: 18px;
| font-weight: bold;
| padding: 10px 20px;
| background: #feb75d;
| display: flex;
| }
| .toast1{
| border: 1px solid #c9c9c9;
| border-radius: 10px;
| width: 50%;
| margin: 0 auto;
| font-size: 18px;
| font-weight: bold;
| padding: 10px 20px;
| background: #ba0517;
| display: flex;
| color: white;
| }
|
|