Skip to content

Commit

Permalink
Update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
nealfennimore committed Dec 7, 2024
1 parent 984af39 commit dd07f65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/src/app/components/content_navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const ContentNavigation = ({ previous, next }: PageNavigationProps) => {
}

return (
<aside className="w-5/6 flex flex-row">
<aside className="w-5/6 flex flex-row mb-4">
{previous && (
<Link
href={`/r3/requirement/${previous.requirement}`}
Expand Down
7 changes: 3 additions & 4 deletions client/src/app/components/security_requirements.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export const SecurityForm = ({
>
<ContentNavigation previous={prev} next={next} />
<div
className="sticky top-32 left-full z-30 flex flex-row-reverse items-center shrink-0 w-1/4"
className="sticky top-36 left-full z-30 flex flex-row-reverse items-center shrink-0 w-1/4 pb-4"
style={{ transform: "translateY(-100%)" }}
>
<button
Expand Down Expand Up @@ -415,8 +415,7 @@ export const SecurityRequirements = ({
return (
<>
<Breadcrumbs requirementId={requirementId} />
<br />
<h3 className="text-3xl">
<h3 className="text-3xl mt-6">
Security Requirements for {requirement.requirement}{" "}
{requirement.title}
<StatusState statuses={statuses} />
Expand All @@ -433,7 +432,7 @@ export const SecurityRequirements = ({
href={`https://csrc.nist.gov/projects/cprt/catalog#/cprt/framework/version/SP_800_171_3_0_0/home?element=${requirement.id}`}
target="_blank"
rel="noreferrer"
className="text-xs text-gray-600 italic"
className="text-xs text-gray-600"
>
View CPRT {requirement.id}
</a>
Expand Down

0 comments on commit dd07f65

Please sign in to comment.