mirror of
https://github.com/lukevella/rallly.git
synced 2025-08-04 00:48:52 +02:00
🐛 Fix unintentional overflow in auth layout
This commit is contained in:
parent
02407935e0
commit
248a6d71ab
1 changed files with 2 additions and 2 deletions
|
@ -6,8 +6,8 @@ import React from "react";
|
|||
export const AuthLayout = ({ children }: { children?: React.ReactNode }) => {
|
||||
return (
|
||||
<div className="h-full p-3 sm:p-8">
|
||||
<div className="mx-auto w-fit">
|
||||
<div className="w-[480px] max-w-full overflow-hidden rounded-lg border bg-white shadow-sm">
|
||||
<div className="mx-auto max-w-lg">
|
||||
<div className="overflow-hidden rounded-lg border bg-white shadow-sm">
|
||||
<div className="bg-pattern border-t-primary-600 border-b border-t-4 bg-gray-500/5 p-4 text-center sm:p-8">
|
||||
<Image
|
||||
src="/static/logo.svg"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue