Skip to content

Commit

Permalink
add spacing between 'Assign additional IPv4 ranges' title and the des…
Browse files Browse the repository at this point in the history
…cription (fixes it across the various views it appears in)
  • Loading branch information
DevDW committed Jan 26, 2024
1 parent 2d364ae commit 28d5c2d
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ export const AssignIPRanges = (props: Props) => {
{ipRangesError && (
<Notice important text={ipRangesError} variant="error" />
)}
<Typography sx={(theme) => ({ fontFamily: theme.font.bold })}>
<Typography
sx={(theme) => ({
fontFamily: theme.font.bold,
paddingBottom: theme.spacing(),
})}
>
{ASSIGN_IPV4_RANGES_TITLE}
</Typography>
<Typography variant="body1">
Expand Down

0 comments on commit 28d5c2d

Please sign in to comment.