fix: Consistent asterisk styling in AlertReportModal

Update custom .required CSS in AlertReportModal to use theme.colorIcon
for consistency with the shared ModalFormField component.

AlertReportModal was using its own .required CSS that overrode the
dynamic validation-based styling, causing inconsistent asterisk colors
across different modals.

Now all required field asterisks use the same subtle theme.colorIcon
color for a consistent, professional appearance.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Maxime Beauchemin
2025-09-10 00:11:39 -07:00
parent 17eeeaccac
commit 7a6b084ff7

View File

@@ -268,7 +268,7 @@ export const StyledInputContainer = styled.div`
.required {
margin-left: ${theme.sizeUnit / 2}px;
color: ${theme.colorError};
color: ${theme.colorIcon};
}
.control-label {