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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
| .account-page{
| .block{
| display: flex;
| }
| .account-page-title{
| font-size: 20px;
| margin-bottom: 34px;
| }
| .account-card{
| display: flex;
| flex-direction: column;
| border-bottom: 1px solid gray;
| margin-bottom: 33px;
| .contact-type{
| width: 184px;
| margin-right: 16px;
| font-size: 20px;
| display: flex;
| flex-direction: column;
| align-items: flex-start;
| }
| &.edit {
| input {
| border: 1px solid lightgray;
| background-color: #fff;
| }
| }
| }
| .account-setting-btn{
| display: flex;
| justify-content: center;
| }
| }
| .error-txt{
| padding-bottom: 10px;
| .error {
| @extend .smTxt_bold;
| @extend .text--primary;
| height: 16px;
| }
| }
| .name-input{
| width: 184px;
| height:27px;
| margin-bottom: 20px;
| font-size: 20px;
| margin-top: -3px;
| }
| .setting-title{
| margin-left: 28px;
| margin-bottom:10px;
| width: 58px;
| font-size: 20px;
| }
| .header{
| display: flex;
| align-items: baseline;
| }
| .contact-input{
| font-size: 20px;
| margin-bottom: 10px;
| text-overflow: ellipsis;
| margin-top: 10px;
| width: 184px;
| }
| .input{
| border: 0;
| background-color: rgba(0,0,0,0) ;
| outline-color: gainsboro;
| }
| .input:focus{
| background-color: #fff;
| }
| .icon-color-change{
| color:$PRIMARY_RED;
| font-size: 20px;
| }
| .icon{
| font-size:20px;
| // color:#1B365D;
| }
| @include desktop{
|
| .header{
| display: flex;
| align-items: baseline;
| justify-content: space-between;
| }
| .setting-title{
| margin-bottom:10px;
| width: 58px;
| font-size: 18px;
| font-weight: bold;
| }
| .account-page{
| .account-page-title{
| font-size: 20px;
| margin-bottom: 34px;
| font-weight: bold;
| }
| }
| .account-card{
| display: flex;
| flex-direction: column;
| border-bottom: 1px solid gray;
| margin-bottom: 33px;
| .contact-type{
| margin-left: 10px;
| font-size: 20px;
| }
| }
| .name-input{
| width: 550px;
| }
| .contact-input{
| width:550px
| }
| }
|
|