@@ -115,9 +115,9 @@ export const Home = () => {
115
115
/>
116
116
< div class = "m-8" >
117
117
< Show when = { ! params . user } fallback = { < h1 class = "text-center text-3xl mb-4" > { `${ params . user } 's` } Repls</ h1 > } >
118
- < div class = "flex flex-col align-middle mb-16 " >
118
+ < div class = "flex flex-col align-middle mb-8 " >
119
119
< button
120
- class = "bg-solid-lightgray shadow-md dark:bg-solid-darkLighterBg rounded-xl p-4 text-3xl flex mx-auto"
120
+ class = "bg-solid-lightgray shadow-md dark:bg-neutral-800 border border-gray-600 rounded-xl p-3 text-xl flex mx-auto justify-center items-center "
121
121
onClick = { async ( ) => {
122
122
const result = await fetch ( `${ API } /repl` , {
123
123
method : 'POST' ,
@@ -137,25 +137,26 @@ export const Home = () => {
137
137
navigate ( `/${ context . user ( ) ?. display } /${ id } ` ) ;
138
138
} }
139
139
>
140
- < Icon path = { plus } class = "w-8 " /> Create new REPL
140
+ < Icon path = { plus } class = "w-6 " /> Create new REPL
141
141
</ button >
142
- < p class = "text-center text-gray-300 text-sm" >
143
- Or { ' ' }
144
- < a href = "/scratchpad" class = "hover:underline" >
142
+ < p class = "text-center text-gray-800 dark:text-gray- 300 text-sm pt-1 " >
143
+ or { ' ' }
144
+ < a href = "/scratchpad" class = "hover:underline text-solid-medium dark:text-solid-darkdefault " >
145
145
open my scratchpad
146
146
</ a >
147
147
</ p >
148
148
</ div >
149
149
</ Show >
150
150
< table class = "w-200 max-w-full mx-auto" >
151
151
< thead >
152
- < tr class = "border-b border-neutral-600" >
153
- < td class = "w-6/10" > Title</ td >
154
- < td class = "w-32" > Edited</ td >
155
- < td class = "text-right w-20" > Options</ td >
152
+ < tr class = "border-b border-neutral-600 font-medium " >
153
+ < th class = "pb-2 w-6/10 text-left " > Title</ th >
154
+ < th class = "pb-2 w-32 text-left " > Edited</ th >
155
+ < th class = "pb-2 w-20 text-right " > Options</ th >
156
156
</ tr >
157
157
</ thead >
158
158
< tbody >
159
+ < tr class = "h-1" aria-hidden />
159
160
< Suspense
160
161
fallback = {
161
162
< tr >
0 commit comments