min-width 0 -> min-width unset, correct class name order

This commit is contained in:
Alex Holliday
2024-11-22 09:18:15 +08:00
parent 992565ff7c
commit b8d391060d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
}
.field-infrastructure-alert {
min-width: 0;
min-width: unset;
max-width: var(--env-var-width-4);
}
+1 -1
View File
@@ -66,7 +66,7 @@ const Field = forwardRef(
return (
<Stack
gap={theme.spacing(2)}
className={`${className} field field-${type}`}
className={`field field-${type} ${className}`}
sx={{
"& fieldset": {
borderColor: theme.palette.border.dark,