Skip to content

Commit

Permalink
refactor(webapp): remove unused style component
Browse files Browse the repository at this point in the history
  • Loading branch information
ben196888 committed Jul 26, 2024
1 parent dd456ed commit 5fe2085
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions packages/webapp/src/components/UserPanel/UserPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,6 @@ const StyledPaper = styled(Paper)(({ theme }) => ({
width: '300px', // Fixed width
}));

export const SelectablePaper = styled(Paper)(({ theme }) => ({
padding: '16px',
display: 'flex',
flexDirection: 'column', // Ensures children are stacked vertically
alignItems: 'flex-start', // Align children to the start
cursor: 'pointer',
'&:hover': {
backgroundColor: theme.palette.action.hover,
},
'&.selected': {
backgroundColor: theme.palette.action.selected,
},
}));

const UserPanel: React.FC<UserPanelProps> = ({ userName, workerTokens, actionTokens, score, projectCards }) => {

return (
Expand Down

0 comments on commit 5fe2085

Please sign in to comment.