Skip to content

Commit 182269f

Browse files
authored
Fix cloud icon alignment in experiments table (#4340)
1 parent bb6b564 commit 182269f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

webview/src/experiments/components/table/body/ExperimentStatusIndicator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export const ExperimentStatusIndicator: React.FC<
4747
return (
4848
<CellHintTooltip tooltipContent="Experiment on remote">
4949
<div className={styles.upload}>
50-
<Icon icon={Cloud} height={16} width={16} />
50+
<Icon className={styles.cloudIndicator} icon={Cloud} />
5151
</div>
5252
</CellHintTooltip>
5353
)

webview/src/experiments/components/table/styles.module.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,12 @@ $badge-size: 0.85rem;
659659
padding: 1px;
660660
}
661661

662+
.cloudIndicator {
663+
height: 16px;
664+
width: 16px;
665+
margin-left: 2px;
666+
}
667+
662668
.running {
663669
display: inline-flex;
664670
height: 12px;

0 commit comments

Comments
 (0)