style(dashboard-v2): use tailwind classes for width

This commit is contained in:
Michał Leszczyk 2022-02-26 12:50:38 +01:00
parent 278ab698c2
commit 8dcd688673
No known key found for this signature in database
GPG Key ID: FA123CA8BAA2FBF4
1 changed files with 3 additions and 3 deletions

View File

@ -8,11 +8,11 @@ export default function ActivityTable({ data }) {
{data.map(({ name, type, size, uploaded, skylink }) => (
<TableRow key={skylink}>
<TableCell>{name}</TableCell>
<TableCell width="80px">{type}</TableCell>
<TableCell width="80px" align="right">
<TableCell className="w-[80px]">{type}</TableCell>
<TableCell className="w-[80px]" align="right">
{size}
</TableCell>
<TableCell width="180px">{uploaded}</TableCell>
<TableCell className="w-[180px]">{uploaded}</TableCell>
<TableCell>{skylink}</TableCell>
</TableRow>
))}