Skip to content

Commit

Permalink
Fix some blocks styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ghsteff committed May 16, 2024
1 parent 409a282 commit c53bd39
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/blocks/authentication/ForgotPassword.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const ForgotPasswordFull = () => {
animate={{ y: 0, opacity: 1 }}
className="h-full w-full flex flex-col items-start p-7"
>
<LogoIcon className="h-11" />
<LogoIcon className="h-11 w-auto mb-2" />
<div className="w-full grow flex flex-col justify-center pr-14">
<h4 className="text-2xl font-sans font-bold mb-0">
Forgot Password?
Expand Down Expand Up @@ -237,7 +237,7 @@ export const ForgotPasswordFull = () => {
</div>
</motion.div>
<div className="relative w-full h-full overflow-hidden">
<img src={BG_IMAGE} className="absolute h-full" />
<img src={BG_IMAGE} className="absolute h-full w-full" />
</div>
</Card>
);
Expand Down Expand Up @@ -349,7 +349,7 @@ export const ResetPassword = () => {
contentClassName="w-full h-full grow flex flex-col"
>
<Stack justifyContent="spaceBetween">
<LogoIcon className="h-11" />
<LogoIcon className="h-11 w-auto" />
<a href="#" className="text-lg text-primary font-semibold">
Create an account
</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/blocks/authentication/Login.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export const LoginFull = () => {
className="h-full w-full flex flex-col items-start p-7"
>
<div className="w-full grow flex flex-col justify-center pr-14">
<LogoIcon className="h-11 mb-2 self-start" />
<LogoIcon className="h-11 mb-2 self-start w-auto" />
<h4 className="text-2xl font-sans font-bold mb-0">
Log In or create account
</h4>
Expand Down
6 changes: 3 additions & 3 deletions docs/blocks/authentication/Register.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const Register = () => {
<Card className="w-full p-12">
<div className="flex flex-col pt-2 mb-5">
<div>
<LogoIcon className="h-11 mb-2" />
<LogoIcon className="h-11 mb-2 w-auto" />
</div>
<h4 className="text-2xl font-sans font-bold mb-0">
Welcome to Reablocks
Expand Down Expand Up @@ -209,12 +209,12 @@ export const RegisterFull = () => {
<motion.div
initial={{ y: -20, opacity: 0 }}
animate={{ y: 0, opacity: 1 }}
className="sm:mx-auto sm:w-full sm:max-w-sm md:max-w-[11000px]"
className="sm:mx-auto sm:w-full sm:max-w-sm md:max-w-[1100px]"
>
<Card className="w-full p-12">
<div className="flex flex-col pt-2 mb-5">
<div>
<LogoIcon className="h-11 mb-2" />
<LogoIcon className="h-11 mb-2 w-auto" />
</div>
<h4 className="text-2xl font-sans font-bold mb-0">
Welcome to Reablocks
Expand Down

0 comments on commit c53bd39

Please sign in to comment.