@@ -60,7 +60,7 @@ const creatableSelectWrapper = (selectData: SelectWrapperType) => {
60
60
iconClassName = "icon-dim-16 fcn-6"
61
61
/>
62
62
) }
63
- < div className = "cn-6 ml-8 mr-4 " > { selectData . title } </ div >
63
+ < div className = "cn-6" > { selectData . title } </ div >
64
64
< div >
65
65
< CreatableSelect
66
66
placeholder = { selectData . placeholder }
@@ -126,15 +126,15 @@ const connectionButton = (connectData: ConnectionButtonType) => {
126
126
content = { connectData . connectTerminal ? 'Disconnect and terminate pod' : 'Connect to terminal' }
127
127
>
128
128
{ connectData . connectTerminal ? (
129
- < span className = "flex mr-8 " >
129
+ < span className = "flex" >
130
130
< Disconnect
131
131
className = "icon-dim-16 mr-4 cursor"
132
132
data-testid = "node-details-terminal-disconnect"
133
133
onClick = { connectData . closeTerminalModal }
134
134
/>
135
135
</ span >
136
136
) : (
137
- < span className = "flex mr-8 " >
137
+ < span className = "flex" >
138
138
< Connect
139
139
className = "icon-dim-16 mr-4 cursor"
140
140
data-testid = "node-details-terminal-connect"
@@ -195,19 +195,19 @@ const connectionSwitch = (switchProps: ConnectionSwitchType) => {
195
195
}
196
196
return (
197
197
< >
198
- < span className = "bcn-2 mr-8 h-32" style = { { width : '1px' } } />
198
+ < span className = "bcn-2 h-32" style = { { width : '1px' } } />
199
199
< Tippy
200
200
className = "default-tt cursor"
201
201
arrow = { false }
202
202
placement = "bottom"
203
203
content = { switchProps . toggleButton ? 'Disconnect from pod' : 'Reconnect to pod' }
204
204
>
205
205
{ switchProps . toggleButton ? (
206
- < span className = "mr-8 flex" data-testid = "disconnect-button" >
206
+ < span className = "flex" data-testid = "disconnect-button" >
207
207
< Stop className = "icon-dim-16 fcr-5 mr-4 cursor" onClick = { switchProps . stopTerminalConnection } />
208
208
</ span >
209
209
) : (
210
- < span className = "mr-8 flex" data-testid = "play-button" >
210
+ < span className = "flex" data-testid = "play-button" >
211
211
< Play className = "icon-dim-16 fcg-5 mr-4 cursor" onClick = { switchProps . resumePodConnection } />
212
212
</ span >
213
213
) }
@@ -222,7 +222,7 @@ const clearTerminal = (clearProps: ClearTerminalType) => {
222
222
}
223
223
return (
224
224
< Tippy className = "default-tt" arrow = { false } placement = "bottom" content = "Clear" >
225
- < div className = "flex mr-8 " data-testid = { clearProps . dataTestId } >
225
+ < div className = "flex" data-testid = { clearProps . dataTestId } >
226
226
< Abort className = "icon-dim-16 mr-4 fcn-6 cursor" onClick = { clearProps . setTerminalCleared } />
227
227
</ div >
228
228
</ Tippy >
@@ -235,7 +235,7 @@ const debugModeToggleButton = (selectData: DebugModeType) => {
235
235
}
236
236
return (
237
237
< >
238
- < span className = "bcn-2 mr-8 h-32" style = { { width : '1px' } } />
238
+ < span className = "bcn-2 h-32" style = { { width : '1px' } } />
239
239
{ selectData . showInfoTippy && (
240
240
< InfoIconTippy
241
241
heading = "Debug mode"
@@ -247,7 +247,7 @@ const debugModeToggleButton = (selectData: DebugModeType) => {
247
247
/>
248
248
) }
249
249
< span > Debug Mode</ span >
250
- < span className = "toggle-icon-dim ml-8 " >
250
+ < span className = "toggle-icon-dim" >
251
251
< Toggle onSelect = { selectData . onToggle } dataTestId = "toggle-debug-mode" selected = { selectData . isEnabled } />
252
252
</ span >
253
253
</ >
@@ -314,7 +314,7 @@ const manifestEditButtons = ({
314
314
315
315
return (
316
316
< >
317
- < span className = "bcn-2 mr-8 h-32" style = { { width : '1px' } } />
317
+ < span className = "bcn-2 h-32" style = { { width : '1px' } } />
318
318
{ renderButtons ( ) }
319
319
{ buttonSelectionState !== EditModeType . NON_EDIT && (
320
320
< span
0 commit comments