Height adjusment, theme/hex replacement

This commit is contained in:
Daniel
2025-01-13 00:20:04 +01:00
committed by Nicolás Hatcher Andrés
parent 912fcae0a3
commit b0f57b20c2

View File

@@ -186,7 +186,7 @@ function NameManagerDialog(properties: NameManagerDialogProperties) {
const StyledDialog = styled(Dialog)(() => ({ const StyledDialog = styled(Dialog)(() => ({
"& .MuiPaper-root": { "& .MuiPaper-root": {
height: "380px", height: "400px",
minHeight: "200px", minHeight: "200px",
minWidth: "620px", minWidth: "620px",
}, },
@@ -260,14 +260,15 @@ const StyledDialogActions = styled(DialogActions)`
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
font-size: 12px; font-size: 12px;
color: #757575; color: ${theme.palette.grey["600"]};
border-top: 1px solid ${theme.palette.grey["300"]};
`; `;
const UploadFooterLink = styled("a")` const UploadFooterLink = styled("a")`
font-size: 12px; font-size: 12px;
font-weight: 400; font-weight: 400;
font-family: "Inter"; font-family: "Inter";
color: #757575; color: ${theme.palette.grey["600"]};
text-decoration: none; text-decoration: none;
&:hover { &:hover {
text-decoration: underline; text-decoration: underline;