fix(debug): Change colour of left border for fatal errors

This commit is contained in:
tecc 2022-11-07 04:21:31 +01:00
parent 916adb5f70
commit ab811461a8
No known key found for this signature in database
GPG Key ID: 400AAD881FCC028B

View File

@ -120,7 +120,7 @@ export const Issue: FC<IssueProps> = function (props) {
borderColour = "border-red-500";
break;
case IssueSeverity.FATAL_ERROR:
borderColour = "border-red-900";
borderColour = "border-red-300";
break;
}