diff options
| author | Kinfe123 <[email protected]> | 2024-06-22 03:09:54 +0300 |
|---|---|---|
| committer | Kinfe123 <[email protected]> | 2024-06-22 03:09:54 +0300 |
| commit | bd86bb111a0bd980fa892b261b45f06ac812e6fc (patch) | |
| tree | a5f963fcee1d08a3ad9a184416d9b4dd9794bff1 /apps/web/app | |
| parent | fix: margin leak (diff) | |
| download | supermemory-bd86bb111a0bd980fa892b261b45f06ac812e6fc.tar.xz supermemory-bd86bb111a0bd980fa892b261b45f06ac812e6fc.zip | |
fix: width issue
Diffstat (limited to 'apps/web/app')
| -rw-r--r-- | apps/web/app/(landing)/Cta.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/(landing)/Cta.tsx b/apps/web/app/(landing)/Cta.tsx index 6eeae084..fc86b388 100644 --- a/apps/web/app/(landing)/Cta.tsx +++ b/apps/web/app/(landing)/Cta.tsx @@ -46,7 +46,7 @@ function Cta() { <p className="z-20 text-center text-lg"> Sign up for the waitlist and be the first to try Supermemory </p> - <div className="md:w-1/2 lg:w-3/4 mx-auto"> + <div className="w-full lg:w-3/4 mx-auto"> <EmailInput /> </div> </section> |