Skip to content

Commit

Permalink
fix(config/theme.tsx): correção nos erros
Browse files Browse the repository at this point in the history
- "Height" inserido novamente ao código
  • Loading branch information
camsste committed Oct 28, 2024
1 parent 308e356 commit 5a23bef
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/app/config/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ declare module "@mui/material/styles" {
};
cardContent: {
paddingBottom: number;
height: number;
};
cardButtonContent:{
display: string;
Expand Down Expand Up @@ -315,7 +316,8 @@ declare module "@mui/material/styles" {
}
};
cardContent?:{
paddingBottom?: number;
paddingBottom?: string;
height: string;
};
cardButtonContent?:{
display?: string;
Expand Down Expand Up @@ -412,6 +414,7 @@ const theme = createTheme({
padding: "8px 16px",
borderRadius: 2,
border: 1,

},
description:{
display: "flex",
Expand Down Expand Up @@ -490,8 +493,10 @@ const theme = createTheme({
}
},
cardContent:{
paddingBottom: 10.63,
paddingBottom: '25%',
height: '250px'
},

cardButtonContent:{
display: "flex",
flexDirection: "column",
Expand Down

0 comments on commit 5a23bef

Please sign in to comment.