Skip to content

Commit

Permalink
remove red colour from warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lcampbell2 committed Jul 28, 2023
1 parent 71cc3fb commit 2201716
Show file tree
Hide file tree
Showing 3 changed files with 211 additions and 203 deletions.
6 changes: 3 additions & 3 deletions frontend/src/guidance/EmailGuidance.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ export function EmailGuidance({ dnsResults, dmarcPhase, status }) {
<AccordionPanel>
{mxRecords.hosts.map(({ preference, hostname, addresses }, idx) => {
return (
<Flex key={idx} p="2">
<Flex key={idx} px="2">
<Text fontSize="lg" w="50%">
<Trans>
<b>Hostname:</b> {hostname}
Expand All @@ -333,9 +333,9 @@ export function EmailGuidance({ dnsResults, dmarcPhase, status }) {
)
})}
{mxRecords.warnings.length > 0 && (
<Box px="2" py="2" bg="weakMuted" borderWidth="1px" borderColor="weak" rounded="md" mb="1">
<Box px="2" py="2" rounded="md" mb="1">
<Text fontWeight="bold" fontSize="lg">
<Trans>Warnings</Trans>
<Trans>Warnings:</Trans>
</Text>
{mxRecords.warnings.map((warning, idx) => {
return (
Expand Down
Loading

0 comments on commit 2201716

Please sign in to comment.