File tree Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,8 @@ export function Footer() {
7
7
const consoleLines = useStore ( ( s ) => s . consoleLines ) ;
8
8
9
9
return (
10
- < footer
11
- tabIndex = { 0 }
12
- className = "collapse collapse-arrow bg-base-200 text-base-content/30 border-t border-base-300 rounded-none"
13
- >
14
- < input type = "checkbox" />
15
- < div className = "collapse-title flex w-full items-center" >
16
- < IconCommandLine />
10
+ < div >
11
+ < div className = "bg-base-200 text-base-content/30 border-t border-base-300 rounded-none flex w-full items-center py-2" >
17
12
< div className = "mx-auto flex gap-x-4 text-sm" >
18
13
< span > ZKNetwork Client</ span >
19
14
< span > |</ span >
@@ -22,13 +17,19 @@ export function Footer() {
22
17
< span > Platform: { platformArch } </ span >
23
18
</ div >
24
19
</ div >
25
- < div className = "collapse-content border-t border-base-300 px-4" >
26
- < div className = "flex h-36 flex-col-reverse overflow-y-scroll text-xs sm:text-xs md:text-sm lg:text-base text-base-content/50" >
27
- { consoleLines . map ( ( v , i ) => (
28
- < span key = { i } > { v } </ span >
29
- ) ) }
20
+ < div className = "collapse collapse-arrow bg-base-200 text-base-content/30 border-t border-base-300 rounded-none" >
21
+ < input type = "checkbox" />
22
+ < div className = "collapse-title flex w-full items-center" >
23
+ < IconCommandLine />
24
+ </ div >
25
+ < div className = "collapse-content border-t border-base-300 px-4" >
26
+ < div className = "flex h-36 flex-col-reverse overflow-y-scroll text-xs sm:text-xs md:text-sm lg:text-base text-base-content/50" >
27
+ { consoleLines . map ( ( v , i ) => (
28
+ < span key = { i } > { v } </ span >
29
+ ) ) }
30
+ </ div >
30
31
</ div >
31
32
</ div >
32
- </ footer >
33
+ </ div >
33
34
) ;
34
35
}
You can’t perform that action at this time.
0 commit comments