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
| .customer-form {
| &-view {
| margin: 24px 24px 24px 24px;
| padding: 16px;
| background-color: #ffffff;
| border-radius: 2px;
| &-form {
| margin-top: 24px;
| width: 100%;
| display: flex;
| justify-content: center;
| }
|
| &-foot-buttton {
| width: 100%;
| display: flex;
| justify-content: center;
| }
| &-foot-buttton-three {
| width: 240px;
| display: flex;
| justify-content: space-between;
| }
|
| // &-form::-webkit-scrollbar {
| // display: none;
| // }
| }
| }
|
|