File tree 3 files changed +18
-6
lines changed
3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 109
109
font-size : 16px ;
110
110
max-width : 560px ;
111
111
text-overflow : ellipsis;
112
- display : -webkit-box;
113
112
color : var (--text-default );
114
113
overflow : hidden;
115
114
-webkit-line-clamp : 5 ;
116
115
-webkit-box-orient : vertical;
117
116
border-bottom : 2px solid;
117
+ overflow : auto;
118
118
}
119
119
120
120
.gameInfo ,
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ export default function OtherSettings({
118
118
< span className = { classNames ( 'settingText' , { isRTL : isRTL } ) } >
119
119
{ t ( 'setting.change-target-exe' , 'Select an alternative EXE to run' ) }
120
120
</ span >
121
- < span >
121
+ < span className = "settingInputWithButton" >
122
122
< input
123
123
data-testid = "setinstallpath"
124
124
type = "text"
@@ -295,7 +295,7 @@ export default function OtherSettings({
295
295
id = "otherOptions"
296
296
type = "text"
297
297
placeholder = { t ( 'options.advanced.placeholder' ) }
298
- className = "settingSelect "
298
+ className = "settingInput "
299
299
value = { otherOptions }
300
300
onChange = { handleOtherOptions }
301
301
/>
@@ -314,7 +314,7 @@ export default function OtherSettings({
314
314
id = "launcherArgs"
315
315
type = "text"
316
316
placeholder = { t ( 'options.gameargs.placeholder' ) }
317
- className = "settingSelect "
317
+ className = "settingInput "
318
318
value = { launcherArgs }
319
319
onChange = { handleLauncherArgs }
320
320
/>
Original file line number Diff line number Diff line change 20
20
flex-direction : column;
21
21
place-self : center;
22
22
place-items : flex-start;
23
- width : 100 % ;
23
+ width : 513 px ;
24
24
padding-bottom : 8px ;
25
25
}
26
26
160
160
border-radius : 10px ;
161
161
}
162
162
163
- .settingSelect > option {
163
+ .settingInput {
164
+ width : 513px ;
165
+ height : 40px ;
166
+ background : var (--input-background );
167
+ border-radius : 10px ;
168
+ font-family : var (--content-font-family ), 'Noto Color Emoji' ;
169
+ font-weight : normal;
170
+ font-size : 16px ;
171
+ line-height : 19px ;
172
+ color : var (--text-secondary );
173
+ text-indent : 22px ;
174
+ border : none;
175
+ box-shadow : 0px 4px 4px rgb (0 0 0 / 25% );
164
176
}
165
177
166
178
.save {
You can’t perform that action at this time.
0 commit comments