File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,14 @@ const Language = {
9
9
) ,
10
10
} ;
11
11
12
- export const Welcome : FC < PropsWithChildren > = ( { children } ) => {
12
+ type WelcomeProps = Readonly <
13
+ PropsWithChildren < {
14
+ className ?: string ;
15
+ } >
16
+ > ;
17
+ export const Welcome : FC < WelcomeProps > = ( { children, className } ) => {
13
18
return (
14
- < div >
19
+ < div className = { className } >
15
20
< div className = "flex justify-center pb-1" >
16
21
< CoderIcon className = "w-12 h-12" />
17
22
</ div >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export const CliAuthPageView: FC<CliAuthPageViewProps> = ({ sessionToken }) => {
20
20
21
21
return (
22
22
< SignInLayout >
23
- < Welcome > Session token</ Welcome >
23
+ < Welcome className = "pb-3" > Session token</ Welcome >
24
24
25
25
< p css = { styles . instructions } >
26
26
Copy the session token below and
You can’t perform that action at this time.
0 commit comments