Skip to content

Commit 6ecb3fd

Browse files
committed
fix: overlapping text in dimension column (#8794)
1 parent 33491d7 commit 6ecb3fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web-common/src/features/dashboards/pivot/NestedTable.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
type DimensionColumnProps,
1616
type MeasureColumnProps,
1717
} from "./pivot-column-definition";
18-
import { isShowMoreRow } from "./pivot-utils";
1918
import {
2019
calculateMeasureWidth,
2120
calculateRowDimensionWidth,
2221
COLUMN_WIDTH_CONSTANTS as WIDTHS,
2322
} from "./pivot-column-width-utils";
23+
import { isShowMoreRow } from "./pivot-utils";
2424
import type { PivotDataRow } from "./types";
2525
2626
// State props
@@ -457,12 +457,12 @@
457457
458458
.with-row-dimension tr > th:first-of-type {
459459
@apply sticky left-0 z-20;
460-
/* @apply bg-surface-subtle; */
460+
@apply bg-surface-base;
461461
}
462462
463463
.with-row-dimension tr > td:first-of-type {
464464
@apply sticky left-0 z-10;
465-
/* @apply bg-surface-subtle; */
465+
@apply bg-surface-base;
466466
}
467467
468468
.with-row-dimension tr:hover > td:first-of-type {

0 commit comments

Comments
 (0)