Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(front): guidance modal [MARXAN-1539] #1080

Merged
merged 1 commit into from
May 18, 2022
Merged
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions app/layout/guide-request/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ export const GuideRequest: React.FC<GuideRequestProps> = ({ onDismiss }: GuideRe
}, [onActive, onDismiss, user]);

return (
<div className="flex flex-col items-center justify-center py-10 space-y-10">
<div className="flex flex-col items-center justify-center py-10 space-y-6">

<h2 className="text-lg font-medium text-center text-gray-600 font-heading">First things first...</h2>
<h2 className="font-medium text-center text-gray-600 text-m font-heading">First things first...</h2>

<Icon icon={GUIDE_REQUEST_SVG} className="w-40" />
<Icon icon={GUIDE_REQUEST_SVG} className="w-28" />
<div className="w-72">
<p className="text-lg text-center text-gray-600 font-heading">Would you like to get some guidance on Marxan&apos;s workflow?</p>
<p className="text-center text-gray-600 text-m font-heading">Would you like to get some guidance on Marxan&apos;s workflow?</p>
</div>
<div className="flex space-x-4 w-72">

<Button
theme="tertiary"
size="lg"
size="base"
type="submit"
className="w-full"
onClick={() => handleActiveRequestGuide(false)}
Expand All @@ -47,7 +47,7 @@ export const GuideRequest: React.FC<GuideRequestProps> = ({ onDismiss }: GuideRe

<Button
theme="primary"
size="lg"
size="base"
type="submit"
className="w-full"
onClick={() => handleActiveRequestGuide(true)}
Expand Down
Loading