Adjust description cell spacing and text color

This commit is contained in:
2025-10-16 04:51:36 -06:00
parent 0ffeb337bc
commit 7c6ae4eb68

View File

@@ -148,10 +148,12 @@ const DescriptionCellRenderer = React.memo(function DescriptionCellRenderer(prop
: { sx: { display: "none" } } : { sx: { display: "none" } }
} }
sx={{ sx={{
mt: 0.5,
mb: 0.5,
'& .MuiOutlinedInput-root': { '& .MuiOutlinedInput-root': {
backgroundColor, backgroundColor,
transition: "background-color 0.2s ease, border-color 0.2s ease", transition: "background-color 0.2s ease, border-color 0.2s ease",
color: "#fff", color: "rgba(255,255,255,0.85)",
fontFamily: fontFamily || gridFontFamily, fontFamily: fontFamily || gridFontFamily,
fontSize: "0.875rem", fontSize: "0.875rem",
height: 34, height: 34,
@@ -171,6 +173,7 @@ const DescriptionCellRenderer = React.memo(function DescriptionCellRenderer(prop
}, },
}, },
'& .MuiOutlinedInput-input': { '& .MuiOutlinedInput-input': {
color: "rgba(255,255,255,0.85)",
py: 0.75, py: 0.75,
px: 1.5, px: 1.5,
}, },