Skip to content

Commit

Permalink
8395 [Manage Public Key]
Browse files Browse the repository at this point in the history
- Changed <div> to <GridContainer>.
- Removed extra <div>
  • Loading branch information
penny-lischer committed Mar 10, 2023
1 parent 22b36ce commit 7d626ad
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions frontend-react/src/components/ManagePublicKey/ManagePublicKey.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,17 @@ import React from "react";
import { AuthElement } from "../AuthElement";
import { withCatchAndSuspense } from "../RSErrorBoundary";
import { MemberType } from "../../hooks/UseOktaMemberships";
import { GridContainer } from "@trussworks/react-uswds";

export function ManagePublicKey() {
return (
<div className="grid-container margin-bottom-5 tablet:margin-top-6">
<div>
<h1 className="margin-top-0 margin-bottom-5">
Manage Public Key
</h1>
<p className="font-sans-md">
Send your public key to begin the REST API authentication
process.
</p>
</div>
</div>
<GridContainer className="padding-bottom-5 tablet:padding-top-6">
<h1 className="margin-top-0 margin-bottom-5">Manage Public Key</h1>
<p className="font-sans-md">
Send your public key to begin the REST API authentication
process.
</p>
</GridContainer>
);
}

Expand Down

0 comments on commit 7d626ad

Please sign in to comment.