File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed
Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,12 @@ export default function PublicActions({className = '', showMobileActions = false
1313 // Mobile menu actions
1414 return (
1515 < div className = "pt-4 border-t border-gray-200 space-y-2" >
16- < SignInButton />
16+ < div className = "w-full" >
17+ < SignInButton style = { { width : '100%' } } />
18+ </ div >
19+ < div className = "w-full" >
20+ < SignUpButton style = { { width : '100%' } } />
21+ </ div >
1722 </ div >
1823 ) ;
1924 }
@@ -25,17 +30,6 @@ export default function PublicActions({className = '', showMobileActions = false
2530 < SignInButton />
2631 < SignUpButton />
2732 </ div >
28-
29- { /* Mobile CTA - shown in mobile menu */ }
30- < div className = "md:hidden" >
31- < SignInButton >
32- { ( { signIn, isLoading} ) => (
33- < Button onClick = { signIn } disabled = { isLoading } size = "sm" >
34- { isLoading ? 'Signing in...' : 'Sign In' }
35- </ Button >
36- ) }
37- </ SignInButton >
38- </ div >
3933 </ div >
4034 ) ;
4135}
You can’t perform that action at this time.
0 commit comments