Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

fix(footer): stick enquiry button to bottom of post page #204

Merged
merged 1 commit into from
Sep 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions client/src/pages/Post/Post.component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const Post = () => {
return isLoading ? (
<Spinner type="page" width="75px" height="200px" />
) : (
<>
<Flex direction="column" height="100%">
<PageTitle title={`${post.title} - AskGov`} />
<div className="post-page">
<Flex pb="14px" align="center">
Expand Down Expand Up @@ -124,6 +124,7 @@ const Post = () => {
<AnswerSection post={post} />
</div>
</div>
<Spacer />
<CitizenRequest
agency={
agency
Expand All @@ -137,7 +138,7 @@ const Post = () => {
}
}
/>
</>
</Flex>
)
}

Expand Down