@@ -90,7 +90,7 @@ export class TemplatesSelectionPlugin extends ViewPlugin {
9090 id : 'TemplatesSelectionAiAlert' ,
9191 message : < div className = 'd-flex flex-row align-items-center' >
9292 < 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 >
9494 </ div > ,
9595 title : 'Generating Workspace'
9696 }
@@ -311,7 +311,7 @@ export class TemplatesSelectionPlugin extends ViewPlugin {
311311 className = "btn btn-sm mr-2 border border-primary"
312312 >
313313 { 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' }
315315 </ span >
316316 </ CustomTooltip > }
317317 { item . templateType && item . templateType . forceCreateNewWorkspace ? < > </ > : isElectron ( ) ?
@@ -327,7 +327,7 @@ export class TemplatesSelectionPlugin extends ViewPlugin {
327327 onClick = { async ( ) => addToCurrentElectronFolder ( item , template . name ) }
328328 className = "btn btn-sm border"
329329 >
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 >
331331 Add here
332332 </ span >
333333 </ CustomTooltip >
@@ -397,11 +397,11 @@ const createModalMessage = async (
397397 onInput = { ( e ) => onChangeTemplateName ( ( e . target as any ) . value ) }
398398 />
399399 { 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 " >
401401 < input
402402 id = "initGitRepository"
403403 data-id = "initGitRepository"
404- className = "form-check-input custom-control -input"
404+ className = "form-check-input form-check -input"
405405 type = "checkbox"
406406 disabled = { gitConfigNotSet }
407407 onChange = { ( e ) => onChangeInitGit ( e . target . value ) }
@@ -410,7 +410,7 @@ const createModalMessage = async (
410410 < label
411411 htmlFor = "initGitRepository"
412412 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"
414414 title = { window . _intl . formatMessage ( { id : 'filePanel.initGitRepoTitle' } ) }
415415 >
416416 < FormattedMessage id = "filePanel.initGitRepositoryLabel" />
@@ -441,9 +441,9 @@ const createOptionsModal = (
441441 </ label >
442442 < div className = "mb-2" >
443443 { [ '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 ) } ` } >
447447 < FormattedMessage id = { `filePanel.${ feature } ` } />
448448 </ label >
449449 </ div >
@@ -455,9 +455,9 @@ const createOptionsModal = (
455455 </ label >
456456 < div >
457457 { [ '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 ) } ` } >
461461 { type . toUpperCase ( ) }
462462 </ label >
463463 </ div >
0 commit comments