🐛 Fix unintentional overflow in auth layout

This commit is contained in:
Luke Vella 2023-08-31 18:05:51 +01:00
parent 02407935e0
commit 248a6d71ab

View file

@ -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"