@@ -13,12 +13,14 @@ export const RunStatus: React.FC<{ run: TRun }> = ({ run }) => {
1313 return (
1414 < >
1515 < FlexBox alignItems = "center" >
16- < div data-tip data-for = { run ?. status } >
16+ < div data-tip data-for = { run ?. status } style = { { margin : '0 auto 0 auto' } } >
1717 < If condition = { run ?. status === runStatus . COMPLETED } >
1818 { ( ) => (
19- < ColoredCircle color = "green" size = "xs" >
20- < icons . check color = { iconColors . white } size = { iconSizes . xs } />
21- </ ColoredCircle >
19+ < div style = { { marginLeft : '-24px' } } >
20+ < ColoredCircle color = "green" size = "xs" >
21+ < icons . check color = { iconColors . white } size = { iconSizes . xs } />
22+ </ ColoredCircle >
23+ </ div >
2224 ) }
2325 </ If >
2426 </ div >
@@ -28,15 +30,17 @@ export const RunStatus: React.FC<{ run: TRun }> = ({ run }) => {
2830 </ FlexBox >
2931
3032 < FlexBox alignItems = "center" >
31- < div data-tip data-for = { run ?. status } >
33+ < div data-tip data-for = { run ?. status } style = { { margin : '0 auto 0 auto' } } >
3234 < If condition = { run ?. status === runStatus . RUNNING } >
3335 { ( ) => (
34- < ColoredCircle color = "secondary" size = "xs" >
35- < icons . inProgress
36- color = { iconColors . white }
37- size = { iconSizes . xs }
38- />
39- </ ColoredCircle >
36+ < div style = { { marginLeft : '-24px' } } >
37+ < ColoredCircle color = "secondary" size = "xs" >
38+ < icons . inProgress
39+ color = { iconColors . white }
40+ size = { iconSizes . xs }
41+ />
42+ </ ColoredCircle >
43+ </ div >
4044 ) }
4145 </ If >
4246 </ div >
@@ -46,12 +50,14 @@ export const RunStatus: React.FC<{ run: TRun }> = ({ run }) => {
4650 </ FlexBox >
4751
4852 < FlexBox alignItems = "center" >
49- < div data-tip data-for = { run ?. status } >
53+ < div data-tip data-for = { run ?. status } style = { { margin : '0 auto 0 auto' } } >
5054 < If condition = { run ?. status === runStatus . FAILED } >
5155 { ( ) => (
52- < ColoredCircle color = "red" size = "xs" >
53- < icons . close color = { iconColors . white } size = { iconSizes . xs } />
54- </ ColoredCircle >
56+ < div style = { { marginLeft : '-24px' } } >
57+ < ColoredCircle color = "red" size = "xs" >
58+ < icons . close color = { iconColors . white } size = { iconSizes . xs } />
59+ </ ColoredCircle >
60+ </ div >
5561 ) }
5662 </ If >
5763 </ div >
@@ -61,12 +67,14 @@ export const RunStatus: React.FC<{ run: TRun }> = ({ run }) => {
6167 </ FlexBox >
6268
6369 < FlexBox alignItems = "center" >
64- < div data-tip data-for = { run ?. status } >
70+ < div data-tip data-for = { run ?. status } style = { { margin : '0 auto 0 auto' } } >
6571 < If condition = { run ?. status === runStatus . CACHED } >
6672 { ( ) => (
67- < ColoredCircle color = "mustard" size = "xs" >
68- < icons . cached color = { iconColors . white } size = { iconSizes . xs } />
69- </ ColoredCircle >
73+ < div style = { { marginLeft : '-24px' } } >
74+ < ColoredCircle color = "mustard" size = "xs" >
75+ < icons . cached color = { iconColors . white } size = { iconSizes . xs } />
76+ </ ColoredCircle >
77+ </ div >
7078 ) }
7179 </ If >
7280 </ div >
0 commit comments