File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ const App = () => {
145145 < div className = "pb-2 border-bottom" >
146146 < Form >
147147 < div className = "d-flex flex-row justify-content-around mb-1 mt-2" >
148- < div className = { `form-control custom-radio ${ state . environment === 'remote' ? 'd-flex' : 'd-flex cursor-status' } ` } >
148+ < div className = { `form-control custom-radio ${ state . environment === 'remote' ? 'd-flex' : 'd-flex cursor-status' } bg-body ` } >
149149 < input
150150 type = "radio"
151151 id = "remote-compiler"
@@ -159,10 +159,9 @@ const App = () => {
159159 < label
160160 htmlFor = "remote-compiler"
161161 className = "form-check-label"
162- style = { { paddingTop : '0.19rem' } }
163162 > Remote Compiler</ label >
164163 </ div >
165- < div className = { `form-control custom-radio ${ state . environment === 'local' ? 'me-2' : `cursor-status` } ` } >
164+ < div className = { `form-control custom-radio ${ state . environment === 'local' ? 'me-2' : `cursor-status` } bg-body p-0 mt-1 ` } >
166165 < input
167166 id = "local-compiler"
168167 data-id = "local-compiler"
@@ -171,12 +170,11 @@ const App = () => {
171170 name = "local"
172171 value = { state . environment }
173172 onChange = { ( ) => setEnvironment ( 'local' ) }
174- className = { `form-check-input ${ state . environment === 'local' ? '' : `cursor-status` } ` }
173+ className = { `form-check-input ${ state . environment === 'local' ? '' : `cursor-status` } me-1 ` }
175174 />
176175 < label
177176 htmlFor = "local-compiler"
178177 className = "form-check-label"
179- style = { { paddingTop : '0.19rem' } }
180178 > Local Compiler</ label >
181179 </ div >
182180 </ div >
You can’t perform that action at this time.
0 commit comments