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
| .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;
| }
| }
| }
|
|