This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree 3 files changed +14
-51
lines changed
3 files changed +14
-51
lines changed Original file line number Diff line number Diff line change @@ -12,18 +12,19 @@ const ReactSelect = (props) => {
12
12
const customStyles = {
13
13
control : ( provided , state ) => ( {
14
14
...provided ,
15
- minHeight : "36px" ,
16
- borderColor : state . isFocused ? "#55a5ff" : provided . borderColor ,
15
+ minHeight : "40px" ,
16
+ border : "1px solid #aaaaab" ,
17
+ borderColor : state . isFocused ? "#55a5ff" : "#aaaaab" ,
17
18
boxShadow : state . isFocused ? "0 0 2px 1px #cee6ff" : provided . boxShadow
18
19
} ) ,
19
20
menu : ( provided ) => ( {
20
21
...provided ,
21
- minHeight : "36px " ,
22
+ minHeight : "40px " ,
22
23
zIndex : 10 ,
23
24
} ) ,
24
25
valueContainer : ( provided ) => ( {
25
26
...provided ,
26
- padding : "1px 6px" ,
27
+ padding : "2px 6px" ,
27
28
} ) ,
28
29
input : ( provided ) => ( {
29
30
...provided ,
@@ -47,14 +48,14 @@ const ReactSelect = (props) => {
47
48
...provided ,
48
49
color : "#AAAAAA" ,
49
50
fontFamily : "Roboto" ,
50
- fontSize : "16px " ,
51
+ fontSize : "14px " ,
51
52
lineHeight : "22px" ,
52
53
textAlign : "left" ,
53
- fontWeight : "300 "
54
+ fontWeight : "400 "
54
55
} ) ,
55
56
multiValue : ( provided ) => ( {
56
57
...provided ,
57
- margin : "4px 4px " ,
58
+ margin : "3px 3px " ,
58
59
color : "#AAAAAA" ,
59
60
fontFamily : "Roboto" ,
60
61
fontSize : "14px" ,
@@ -69,9 +70,7 @@ const ReactSelect = (props) => {
69
70
< Select
70
71
value = { props . value }
71
72
styles = { customStyles }
72
- onChange = { ( val ) => {
73
- props . onChange ( val ) ;
74
- } }
73
+ onChange = { props . onChange }
75
74
options = { props . options }
76
75
styleName = { props . error ? "error" : "" }
77
76
isMulti = { props . isMulti }
Original file line number Diff line number Diff line change 9
9
border : none !important ;
10
10
box-shadow : none !important ;
11
11
transition : none !important ;
12
+ height : 28px ;
12
13
}
13
14
}
14
15
Original file line number Diff line number Diff line change 7
7
width : 100% ;
8
8
9
9
.job-form-fields-container {
10
- padding : 40px 19 % 20px ;
10
+ padding : 40px 0 px 20px ;
11
11
12
12
.job-form-fields-wrapper {
13
+ width : 100% ;
13
14
max-width : 640px ;
15
+ margin : 0 auto ;
16
+ text-align : left ;
14
17
}
15
18
16
19
input :not ([type = " checkbox" ]),
55
58
56
59
.datepicker-wrapper > div :nth-child (2 ) > div :nth-child (2 ) {
57
60
z-index : 100 ;
58
- }
59
-
60
- @media (max-width : 1366px ) {
61
- .tc-form {
62
- .job-form-fields-container {
63
- padding-left : 15% ;
64
- padding-right : 15% ;
65
- transition : 300ms ;
66
- }
67
- }
68
- }
69
-
70
- @media (max-width : 1280px ) {
71
- .tc-form {
72
- .job-form-fields-container {
73
- padding-left : 10% ;
74
- padding-right : 10% ;
75
- transition : 300ms ;
76
- }
77
- }
78
- }
79
-
80
- @media (max-width : 1020px ) {
81
- .tc-form {
82
- .job-form-fields-container {
83
- padding-left : 5% ;
84
- padding-right : 5% ;
85
- transition : 300ms ;
86
- }
87
- }
88
- }
89
-
90
- @media (max-width : 854px ) {
91
- .tc-form {
92
- .job-form-fields-container {
93
- padding-left : 0 ;
94
- padding-right : 0 ;
95
- transition : 300ms ;
96
- }
97
- }
98
61
}
You can’t perform that action at this time.
0 commit comments