fix(front): use theme-aware color for side panel title (#20645)

## Summary
- Added `color: ${themeCssVariables.font.color.primary}` to
`StyledPageInfoTitleContainer` in `SidePanelPageInfoLayout.tsx`
- The "Update records" title had no explicit color, so it didn't adapt
to dark mode and was nearly invisible against the dark background
- Now correctly uses the theme-aware primary font color

## Changes
-
`packages/twenty-front/src/modules/side-panel/components/SidePanelPageInfoLayout.tsx`

Fixes #20627
This commit is contained in:
Shubham Singh
2026-05-18 13:55:34 +05:30
committed by GitHub
parent 4d2ceaf70a
commit 140dceebd1
@@ -29,6 +29,7 @@ export const StyledPageInfoTextContainer = styled.div`
`;
export const StyledPageInfoTitleContainer = styled.div`
color: ${themeCssVariables.font.color.primary};
font-size: ${themeCssVariables.font.size.md};
font-weight: ${themeCssVariables.font.weight.semiBold};
max-width: 150px;