fix: Restore correct Tailwind CSS classes for layout
- Fixed max-w-w160 → max-w-[640px] (was causing full-width issue) - Fixed mt-25 → mt-[100px] (mobile top margin for language buttons)
This commit is contained in:
@@ -124,8 +124,8 @@ export default function DeployPage() {
|
|||||||
|
|
||||||
<LanguageSelector currentLang={lang} onLangChange={setLang} />
|
<LanguageSelector currentLang={lang} onLangChange={setLang} />
|
||||||
|
|
||||||
<div className="relative z-10 w-full max-w-w160 p-4 md:p-8">
|
<div className="relative z-10 w-full max-w-[640px] p-4 md:p-8">
|
||||||
<header className="text-center mb-12 mt-25 md:mt-0">
|
<header className="text-center mb-12 mt-[100px] md:mt-0">
|
||||||
<motion.h1
|
<motion.h1
|
||||||
initial={{ opacity: 0, y: -20 }}
|
initial={{ opacity: 0, y: -20 }}
|
||||||
animate={{ opacity: 1, y: 0 }}
|
animate={{ opacity: 1, y: 0 }}
|
||||||
|
|||||||
Reference in New Issue
Block a user