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 some blocks styling #193

Merged
merged 1 commit into from
May 16, 2024
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
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
Loading