Fix regression in date color

This commit is contained in:
Manav Rathi
2025-07-16 12:35:07 +05:30
parent 99a8f5152a
commit 14bc47c055

View File

@@ -848,13 +848,15 @@ const asFullSpanListItem = ({ item, ...rest }: FileListHeaderOrFooter) => ({
*/
const dateContainerHeight = 48;
const DateContainer = styled(ListItemContainer)`
const DateContainer = styled(ListItemContainer)(
({ theme }) => `
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
height: ${dateContainerHeight}px;
color: "text.muted";
`;
color: ${theme.vars.palette.text.muted};
`,
);
const NoFilesContainer = styled(ListItemContainer)`
text-align: center;