Skip to content

Commit

Permalink
fix button workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
sanglevinh committed Aug 4, 2023
1 parent 7a10de6 commit 4f0d4e0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/src/pages/Workspace/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -508,12 +508,17 @@ const WorkspacesWrapper = styled(Box)(({ theme }) => ({

const WorkspacesTitle = styled('h1')(({ theme }) => ({}))

const ButtonCustom = styled(Button)(({ theme }) => ({
const ButtonCustom = styled('button')(({ theme }) => ({
backgroundColor: '#000000c4',
color: '#FFF',
fontSize: 16,
padding: theme.spacing(0.5, 1.25),
textTransform: 'unset',
borderRadius: 4,
height: 30,
display: 'flex',
alignItems: 'center',
cursor: 'pointer',
'&:hover': {
backgroundColor: '#000000fc',
},
Expand Down

0 comments on commit 4f0d4e0

Please sign in to comment.