Refactor component imports for consistency; streamline Menu and SideMenu components; enhance TableRow and TableWithPagination for better data handling; update Header component for improved user experience.

This commit is contained in:
2025-10-30 04:54:16 -04:00
parent 4e8abcabfd
commit 5a86c5e578
14 changed files with 99 additions and 129 deletions

View File

@@ -19,10 +19,12 @@ export const TopNavigation = styled.default.div<{isLoggedIn: boolean}>`
left: 0;
right: 0;
z-index: 1000;
${({isLoggedIn}) => isLoggedIn && styled.css`
background-color: ${colors.headerColor};
padding: ${paddings.small} ${paddings.xlarge};
`}
${({isLoggedIn}) =>
isLoggedIn &&
styled.css`
background-color: ${colors.headerColor};
padding: ${paddings.small} ${paddings.xlarge};
`}
`;
export const NavigationLeftSide = styled.default.div`
@@ -73,4 +75,4 @@ export const UserInitials = styled.default.div`
${mediaPhone} {
display: none;
}
`;
`;