Skip to content

Commit c0da142

Browse files
authored
Replace firstCell with experimentCell (#1824)
1 parent dfa3e8d commit c0da142

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

webview/src/experiments/components/table/Cell.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ export const FirstCell: React.FC<
3939
<div
4040
{...cell.getCellProps({
4141
className: cx(
42-
styles.firstCell,
4342
styles.td,
4443
styles.experimentCell,
4544
isPlaceholder && styles.groupPlaceholder

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

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ $workspace-row-edge-margin: $edge-padding - $cell-padding;
131131
border-top-color: $changed-color;
132132
}
133133

134-
.runningExperiment.oddRow > .firstCell & {
134+
.runningExperiment.oddRow > .experimentCell & {
135135
border-left: 1.5px solid $row-bg-alt-color;
136136
border-bottom: 1.5px solid $row-bg-alt-color;
137137
}
@@ -170,13 +170,9 @@ $workspace-row-edge-margin: $edge-padding - $cell-padding;
170170
display: flex;
171171
flex-flow: column nowrap;
172172

173-
.firstCell {
174-
display: flex;
175-
flex-flow: row nowrap;
176-
}
177173
.experimentGroup {
178174
.nestedRow {
179-
.firstCell {
175+
.experimentCell {
180176
padding-left: $nested-row-padding;
181177
}
182178
}
@@ -362,6 +358,8 @@ $workspace-row-edge-margin: $edge-padding - $cell-padding;
362358
}
363359
}
364360
.experimentCell {
361+
display: flex;
362+
flex-flow: row nowrap;
365363
text-align: left;
366364
.innerCell {
367365
justify-content: flex-start;

0 commit comments

Comments
 (0)