From 8dcd6886738e4fdf6a302154fe82d82590612abf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Leszczyk?= Date: Sat, 26 Feb 2022 12:50:38 +0100 Subject: [PATCH] style(dashboard-v2): use tailwind classes for width --- .../src/components/LatestActivity/ActivityTable.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/dashboard-v2/src/components/LatestActivity/ActivityTable.js b/packages/dashboard-v2/src/components/LatestActivity/ActivityTable.js index c7c9c550..095ad728 100644 --- a/packages/dashboard-v2/src/components/LatestActivity/ActivityTable.js +++ b/packages/dashboard-v2/src/components/LatestActivity/ActivityTable.js @@ -8,11 +8,11 @@ export default function ActivityTable({ data }) { {data.map(({ name, type, size, uploaded, skylink }) => ( {name} - {type} - + {type} + {size} - {uploaded} + {uploaded} {skylink} ))}