@@ -90,7 +90,7 @@ export class TemplatesSelectionPlugin extends ViewPlugin {
90
90
id : 'TemplatesSelectionAiAlert' ,
91
91
message : < div className = 'd-flex flex-row align-items-center' >
92
92
< span > < img src = "../../../assets/img/remixai-logoDefault.webp" style = { { width : '50px' , height : '50px' } } alt = "Ai alert" /> </ span >
93
- < p className = 'ml -2' style = { { fontSize : '1.1rem' } } > Your request is being processed. Please wait while I generate the workspace for you. It won't be long.</ p >
93
+ < p className = 'ms -2' style = { { fontSize : '1.1rem' } } > Your request is being processed. Please wait while I generate the workspace for you. It won't be long.</ p >
94
94
</ div > ,
95
95
title : 'Generating Workspace'
96
96
}
@@ -311,7 +311,7 @@ export class TemplatesSelectionPlugin extends ViewPlugin {
311
311
className = "btn btn-sm mr-2 border border-primary"
312
312
>
313
313
{ isElectron ( ) ?
314
- < > < i className = 'fa fa-folder-open mr -1' > </ i > Create</ > : 'Create' }
314
+ < > < i className = 'fa fa-folder-open me -1' > </ i > Create</ > : 'Create' }
315
315
</ span >
316
316
</ CustomTooltip > }
317
317
{ item . templateType && item . templateType . forceCreateNewWorkspace ? < > </ > : isElectron ( ) ?
@@ -327,7 +327,7 @@ export class TemplatesSelectionPlugin extends ViewPlugin {
327
327
onClick = { async ( ) => addToCurrentElectronFolder ( item , template . name ) }
328
328
className = "btn btn-sm border"
329
329
>
330
- < i className = "fa fa-folder-plus mr -1" aria-hidden = "true" > </ i >
330
+ < i className = "fa fa-folder-plus me -1" aria-hidden = "true" > </ i >
331
331
Add here
332
332
</ span >
333
333
</ CustomTooltip >
@@ -397,11 +397,11 @@ const createModalMessage = async (
397
397
onInput = { ( e ) => onChangeTemplateName ( ( e . target as any ) . value ) }
398
398
/>
399
399
{ templateGroup . hasOptions ? createOptionsModal ( onChangeCheckBoxRefs , onChangeRadioRefs ) : null }
400
- < div className = "d-flex py-2 align-items-center custom-control custom-checkbox " >
400
+ < div className = "d-flex py-2 align-items-center form-check " >
401
401
< input
402
402
id = "initGitRepository"
403
403
data-id = "initGitRepository"
404
- className = "form-check-input custom-control -input"
404
+ className = "form-check-input form-check -input"
405
405
type = "checkbox"
406
406
disabled = { gitConfigNotSet }
407
407
onChange = { ( e ) => onChangeInitGit ( e . target . value ) }
@@ -410,7 +410,7 @@ const createModalMessage = async (
410
410
< label
411
411
htmlFor = "initGitRepository"
412
412
data-id = "initGitRepositoryLabel"
413
- className = "m-0 form-check-label custom-control -label udapp_checkboxAlign"
413
+ className = "m-0 form-check-label form-check -label udapp_checkboxAlign"
414
414
title = { window . _intl . formatMessage ( { id : 'filePanel.initGitRepoTitle' } ) }
415
415
>
416
416
< FormattedMessage id = "filePanel.initGitRepositoryLabel" />
@@ -441,9 +441,9 @@ const createOptionsModal = (
441
441
</ label >
442
442
< div className = "mb-2" >
443
443
{ [ 'mintable' , 'burnable' , 'pausable' ] . map ( ( feature ) => (
444
- < div key = { feature } className = "d-flex ml -2 custom-control custom-checkbox " >
445
- < input className = "custom-control -input" type = "checkbox" name = "feature" value = { feature } id = { feature } onChange = { onChangeCheckBoxRefs } />
446
- < label className = "form-check-label custom-control -label" htmlFor = { feature } data-id = { `featureType${ feature . charAt ( 0 ) . toUpperCase ( ) + feature . slice ( 1 ) } ` } >
444
+ < div key = { feature } className = "d-flex ms -2 form-check " >
445
+ < input className = "form-check -input" type = "checkbox" name = "feature" value = { feature } id = { feature } onChange = { onChangeCheckBoxRefs } />
446
+ < label className = "form-check-label form-check -label" htmlFor = { feature } data-id = { `featureType${ feature . charAt ( 0 ) . toUpperCase ( ) + feature . slice ( 1 ) } ` } >
447
447
< FormattedMessage id = { `filePanel.${ feature } ` } />
448
448
</ label >
449
449
</ div >
@@ -455,9 +455,9 @@ const createOptionsModal = (
455
455
</ label >
456
456
< div >
457
457
{ [ 'transparent' , 'uups' ] . map ( ( type ) => (
458
- < div key = { type } className = "d-flex ml -2 custom-control custom-radio " >
459
- < input className = "custom-control -input" type = "radio" name = "upgradeability" value = { type } id = { type } onChange = { onChangeRadioRefs } />
460
- < label className = "form-check-label custom-control -label" htmlFor = { type } data-id = { `upgradeType${ type . charAt ( 0 ) . toUpperCase ( ) + type . slice ( 1 ) } ` } >
458
+ < div key = { type } className = "d-flex ms -2 form-check " >
459
+ < input className = "form-check -input" type = "radio" name = "upgradeability" value = { type } id = { type } onChange = { onChangeRadioRefs } />
460
+ < label className = "form-check-label form-check -label" htmlFor = { type } data-id = { `upgradeType${ type . charAt ( 0 ) . toUpperCase ( ) + type . slice ( 1 ) } ` } >
461
461
{ type . toUpperCase ( ) }
462
462
</ label >
463
463
</ div >
0 commit comments