@@ -180,11 +180,11 @@ export function DatasetsPage() {
180180 < Table >
181181 < TableHeader >
182182 < TableRow className = "hover:bg-transparent" >
183- < TableHead className = "w-[35%]" > Name</ TableHead >
184- < TableHead className = "w-[25%]" > Description</ TableHead >
185- < TableHead className = "w-[15%]" > Experiment</ TableHead >
186- < TableHead className = "w-[15%]" > Run</ TableHead >
187- < TableHead className = "w-[10%] text-right" > Actions</ TableHead >
183+ < TableHead className = "w-[35%] h-10 " > Name</ TableHead >
184+ < TableHead className = "w-[25%] h-10 " > Description</ TableHead >
185+ < TableHead className = "w-[15%] h-10 " > Experiment</ TableHead >
186+ < TableHead className = "w-[15%] h-10 " > Run</ TableHead >
187+ < TableHead className = "w-[10%] h-10 text-right" > Actions</ TableHead >
188188 </ TableRow >
189189 </ TableHeader >
190190 < TableBody >
@@ -193,11 +193,11 @@ export function DatasetsPage() {
193193 key = { dataset . id }
194194 className = { selectedDataset ?. id === dataset . id ? 'bg-accent/50' : '' }
195195 >
196- < TableCell >
196+ < TableCell className = "py-2" >
197197 < div className = "flex items-center gap-2" >
198- < Database className = "h-4 w-4 text-blue-500 flex-shrink-0" />
198+ < Database className = "h-3.5 w-3.5 text-blue-500 flex-shrink-0" />
199199 < div className = "min-w-0" >
200- < p className = "text-sm font-medium truncate" > { dataset . name } </ p >
200+ < p className = "text-[13px] font-medium truncate" > { dataset . name } </ p >
201201 < p className = "text-xs text-muted-foreground" >
202202 { formatDistanceToNow ( new Date ( dataset . createdAt ) , {
203203 addSuffix : true ,
@@ -206,49 +206,49 @@ export function DatasetsPage() {
206206 </ div >
207207 </ div >
208208 </ TableCell >
209- < TableCell >
210- < p className = "text-sm text-muted-foreground line-clamp-2 " >
209+ < TableCell className = "py-2" >
210+ < p className = "text-[13px] text-muted-foreground line-clamp-1 " >
211211 { dataset . description || '-' }
212212 </ p >
213213 </ TableCell >
214- < TableCell >
214+ < TableCell className = "py-2" >
215215 { dataset . experimentId ? (
216216 < Link
217217 to = { `/experiments/${ dataset . experimentId } ` }
218- className = "inline-flex items-center gap-1 text-sm text-blue-600 hover:text-blue-700 hover:underline"
218+ className = "inline-flex items-center gap-1 text-[13px] text-blue-600 hover:text-blue-700 hover:underline"
219219 >
220220 < span className = "font-mono truncate max-w-[100px]" >
221221 { dataset . experimentId . slice ( 0 , 8 ) }
222222 </ span >
223223 < ExternalLink className = "h-3 w-3 flex-shrink-0" />
224224 </ Link >
225225 ) : (
226- < span className = "text-sm text-muted-foreground" > -</ span >
226+ < span className = "text-[13px] text-muted-foreground" > -</ span >
227227 ) }
228228 </ TableCell >
229- < TableCell >
229+ < TableCell className = "py-2" >
230230 { dataset . runId ? (
231231 < Link
232232 to = { `/runs/${ dataset . runId } ` }
233- className = "inline-flex items-center gap-1 text-sm text-green-600 hover:text-green-700 hover:underline"
233+ className = "inline-flex items-center gap-1 text-[13px] text-green-600 hover:text-green-700 hover:underline"
234234 >
235235 < span className = "font-mono truncate max-w-[100px]" >
236236 { dataset . runId . slice ( 0 , 8 ) }
237237 </ span >
238238 < ExternalLink className = "h-3 w-3 flex-shrink-0" />
239239 </ Link >
240240 ) : (
241- < span className = "text-sm text-muted-foreground" > -</ span >
241+ < span className = "text-[13px] text-muted-foreground" > -</ span >
242242 ) }
243243 </ TableCell >
244- < TableCell className = "text-right" >
244+ < TableCell className = "py-2 text-right" >
245245 < Button
246246 variant = "ghost"
247247 size = "sm"
248248 onClick = { ( ) => handleViewFiles ( dataset ) }
249- className = "h-8 "
249+ className = "h-7 px-2 "
250250 >
251- < Eye className = "h-4 w-4 " />
251+ < Eye className = "h-3.5 w-3.5 " />
252252 </ Button >
253253 </ TableCell >
254254 </ TableRow >
0 commit comments