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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
| .pam-quickFilter-radio.el-radio-group {
| display: flex;
| justify-content: space-between;
| width: 100%;
|
| .el-radio {
| display: block;
| width: 48%;
| height: 110px;
| margin-right: 0px;
| box-shadow: 0 0 6px #22222229;
| border-radius: 10px;
|
| .el-radio__input {
| display: none;
| }
|
| .el-radio__label {
| text-align: center;
| color: $PRIMARY_BLACK;
| display: block;
| line-height: 110px;
| padding-left: 0;
|
| }
|
| &.is-checked {
| background-color: #22222229;
| }
| }
| }
|
| .pam-radio-group--col {
| display: flex;
| flex-direction: column;
| font-size: 20px;
| .el-radio-button {
| &.is-active {
| color:$PRIMARY_BLACK;
| background-color: none !important;
| border: none;
| }
| }
| }
|
| .pam-single-btn.el-radio-group{
| .el-radio {
| padding: 10px 20px;
| border: 1px $LIGHT_GREY solid;
| background-color: $PRIMARY_WHITE;
| border-radius: 50px;
| font-size: 20px;
| margin-right: 10px;
| margin-bottom: 10px;
|
| .el-radio__input {
| display: none;
| }
|
| .el-radio__label {
| text-align: center;
| color: $PRIMARY_BLACK;
| display: block;
| padding-left: 0px;
| }
|
| &.is-checked {
| background-color:$CORAL;
| color: $PRIMARY_WHITE;
| .el-radio__label{
| color: $PRIMARY_WHITE;
| }
| }
| }
| }
|
|