@@ -219,19 +219,19 @@ function TeamUsage() {
219
219
< div className = "flex flex-col w-full mb-8" >
220
220
< ItemsList className = "mt-2 text-gray-500" >
221
221
< Item header = { false } className = "grid grid-cols-12 gap-x-3 bg-gray-100 mb-5" >
222
- < ItemField className = "col-span-2 my-auto" >
223
- < span > Type</ span >
222
+ < ItemField className = "col-span-2 my-auto " >
223
+ < span className = "font-medium" > Type</ span >
224
224
</ ItemField >
225
225
< ItemField className = "col-span-5 my-auto" >
226
- < span > ID</ span >
226
+ < span className = "font-medium" > ID</ span >
227
227
</ ItemField >
228
228
< ItemField className = "my-auto" >
229
- < span > Credits</ span >
229
+ < span className = "font-medium" > Credits</ span >
230
230
</ ItemField >
231
231
< ItemField className = "my-auto" />
232
232
< ItemField className = "col-span-3 my-auto cursor-pointer" >
233
233
< span
234
- className = "flex my-auto"
234
+ className = "flex my-auto font-medium "
235
235
onClick = { ( ) => setIsStartedTimeDescending ( ! isStartedTimeDescending ) }
236
236
>
237
237
Timestamp
@@ -251,23 +251,23 @@ function TeamUsage() {
251
251
className = "flex p-3 grid grid-cols-12 gap-x-3 justify-between transition ease-in-out rounded-xl focus:bg-gitpod-kumquat-light"
252
252
>
253
253
< div className = "flex flex-col col-span-2 my-auto" >
254
- < span className = "text-gray-700 dark:text-gray-400 " >
254
+ < span className = "text-gray-600 dark:text-gray-100 text-md font-medium " >
255
255
{ getType ( usage . workspaceType ) }
256
256
</ span >
257
257
< span className = "text-sm text-gray-400 dark:text-gray-600" >
258
258
{ usage . workspaceClass }
259
259
</ span >
260
260
</ div >
261
261
< div className = "flex flex-col col-span-5 my-auto" >
262
- < span className = "truncate text-gray-700 dark:text-gray-400 " >
262
+ < span className = "truncate text-gray-600 dark:text-gray-100 text-md font-medium " >
263
263
{ usage . workspaceId }
264
264
</ span >
265
265
< span className = "text-sm truncate text-gray-400 dark:text-gray-600" >
266
266
{ usage . contextURL && toRemoteURL ( usage . contextURL ) }
267
267
</ span >
268
268
</ div >
269
269
< div className = "flex flex-col my-auto" >
270
- < span className = "text-right text-gray-700 dark:text-gray-400" >
270
+ < span className = "text-right text-gray-700 dark:text-gray-400 font-semibold " >
271
271
{ usage . credits . toFixed ( 1 ) }
272
272
</ span >
273
273
< span className = "text-right truncate text-sm text-gray-400 dark:text-gray-600" >
@@ -276,12 +276,12 @@ function TeamUsage() {
276
276
</ div >
277
277
< div className = "my-auto" />
278
278
< div className = "flex flex-col col-span-3 my-auto" >
279
- < span className = "text-gray-400 truncate" >
279
+ < span className = "text-gray-400 truncate font-medium " >
280
280
{ displayTime ( usage . startTime ) }
281
281
</ span >
282
282
< div className = "flex" >
283
283
{ usage . workspaceType === "prebuild" ? (
284
- < UsageIcon className = "my-auto" />
284
+ < UsageIcon className = "my-auto w-4 h-4 mr-2 " />
285
285
) : (
286
286
""
287
287
) }
0 commit comments