mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-22 23:17:09 +00:00
fix: signup screen
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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">
|
||||||
Добро пожаловать!
|
Добро пожаловать!
|
||||||
|
|||||||
Reference in New Issue
Block a user