fix: signup screen

This commit is contained in:
moolcoov
2025-03-01 23:26:43 +03:00
parent 97ebd36b8c
commit c021ae19e7
2 changed files with 10 additions and 3 deletions
@@ -1,10 +1,17 @@
const DataRush = ({ size = 52 }: { size?: number }) => { const DataRush = ({
size = 52,
className,
}: {
size?: number;
className?: string;
}) => {
return ( return (
<svg <svg
height={size} height={size}
viewBox="0 0 149 52" viewBox="0 0 149 52"
fill="none" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
className={className}
> >
<rect width="149" height="52" fill="#333333" /> <rect width="149" height="52" fill="#333333" />
<path <path
+2 -2
View File
@@ -17,8 +17,8 @@ const LoginPage = () => {
}, []); }, []);
return ( return (
<div className="flex h-screen flex-col items-center gap-10 px-4 py-10 sm:gap-18 sm:py-18"> <div className="flex flex-col items-center gap-10 px-4 py-10 sm:gap-18 sm:py-18">
<DataRush size={52} /> <DataRush size={52} className="min-h-[52px]" />
<div className="flex w-full max-w-96 flex-col items-center gap-7"> <div className="flex w-full max-w-96 flex-col items-center gap-7">
<h1 className="text-center text-4xl font-semibold"> <h1 className="text-center text-4xl font-semibold">
Добро пожаловать! Добро пожаловать!