|
@@ -176,7 +176,8 @@ const Schedule = styled('small')`
|
|
|
|
|
|
const MonitorEnvContainer = styled('div')`
|
|
|
display: flex;
|
|
|
- padding: 0 ${space(2)};
|
|
|
+ padding: ${space(3)} ${space(2)};
|
|
|
+ gap: ${space(4)};
|
|
|
flex-direction: column;
|
|
|
border-right: 1px solid ${p => p.theme.innerBorder};
|
|
|
text-align: right;
|
|
@@ -191,6 +192,7 @@ const EnvWithStatus = styled('div')`
|
|
|
display: flex;
|
|
|
gap: ${space(0.5)};
|
|
|
align-items: center;
|
|
|
+ height: calc(${p => p.theme.fontSizeLarge} * ${p => p.theme.text.lineHeightHeading});
|
|
|
|
|
|
&:hover ${EnvActionButton} {
|
|
|
display: block;
|
|
@@ -203,7 +205,6 @@ const MonitorEnvLabel = styled('div')<{status: MonitorStatus}>`
|
|
|
white-space: nowrap;
|
|
|
flex: 1;
|
|
|
|
|
|
- padding: ${space(2)} 0;
|
|
|
color: ${p => p.theme[statusIconColorMap[p.status].color]};
|
|
|
`;
|
|
|
|