Skip to content

Commit 9941631

Browse files
committed
style: Prevent letters from being vertically cut
1 parent d078b14 commit 9941631

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

app/charts/table/cell-desktop.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ export const CellDesktop = ({
8484
<Box
8585
component="span"
8686
sx={{
87+
lineHeight: 1.5,
8788
...(shouldApplyWidthLimits && {
8889
overflow: "hidden",
8990
textOverflow: "ellipsis",

app/charts/table/table-content.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ export const TableContent = ({ children }: { children: ReactNode }) => {
138138
component="span"
139139
sx={{
140140
fontWeight: "bold",
141+
lineHeight: 1.5,
141142
...(hasWidthLimit && {
142143
overflow: "hidden",
143144
textOverflow: "ellipsis",

0 commit comments

Comments
 (0)