@@ -53,7 +53,7 @@ export const ProxiesSettingsModal: Component<{
53
53
< ConfigTitle withDivider > { t ( 'urlForLatencyTest' ) } </ ConfigTitle >
54
54
55
55
< input
56
- class = "input"
56
+ class = "input w-full "
57
57
value = { urlForLatencyTest ( ) }
58
58
onChange = { ( e ) => setUrlForLatencyTest ( e . target . value ) }
59
59
/>
@@ -66,7 +66,7 @@ export const ProxiesSettingsModal: Component<{
66
66
67
67
< input
68
68
type = "number"
69
- class = "input"
69
+ class = "input w-full "
70
70
value = { latencyTestTimeoutDuration ( ) }
71
71
onChange = { ( e ) =>
72
72
setLatencyTestTimeoutDuration ( Number ( e . target . value ) )
@@ -78,7 +78,7 @@ export const ProxiesSettingsModal: Component<{
78
78
< ConfigTitle withDivider > { t ( 'proxiesSorting' ) } </ ConfigTitle >
79
79
80
80
< select
81
- class = "select"
81
+ class = "select w-full "
82
82
value = { proxiesOrderingType ( ) }
83
83
onChange = { ( e ) =>
84
84
setProxiesOrderingType ( e . target . value as PROXIES_ORDERING_TYPE )
@@ -124,7 +124,7 @@ export const ProxiesSettingsModal: Component<{
124
124
< ConfigTitle withDivider > { t ( 'proxiesPreviewType' ) } </ ConfigTitle >
125
125
126
126
< select
127
- class = "select"
127
+ class = "select w-full "
128
128
value = { proxiesPreviewType ( ) }
129
129
onChange = { ( e ) =>
130
130
setProxiesPreviewType ( e . target . value as PROXIES_PREVIEW_TYPE )
@@ -141,7 +141,7 @@ export const ProxiesSettingsModal: Component<{
141
141
142
142
< input
143
143
type = "number"
144
- class = "input"
144
+ class = "input w-full "
145
145
value = { iconHeight ( ) }
146
146
onChange = { ( e ) => setIconHeight ( Number ( e . target . value ) ) }
147
147
/>
@@ -150,7 +150,7 @@ export const ProxiesSettingsModal: Component<{
150
150
151
151
< input
152
152
type = "number"
153
- class = "input"
153
+ class = "input w-full "
154
154
value = { iconMarginRight ( ) }
155
155
onChange = { ( e ) => setIconMarginRight ( Number ( e . target . value ) ) }
156
156
/>
0 commit comments