fix(dashboard-v2): fix table cell paddings

This commit is contained in:
Michał Leszczyk 2022-02-23 11:19:20 +01:00
parent ae5c66817c
commit fad846ee7a
No known key found for this signature in database
GPG Key ID: FA123CA8BAA2FBF4
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import styled from "styled-components";
* Accepts all HMTL attributes a `<td>` element does. * Accepts all HMTL attributes a `<td>` element does.
*/ */
export const TableCell = styled.td.attrs({ export const TableCell = styled.td.attrs({
className: `px-6 py-4 h-tableRow truncate className: `first:pl-6 last:pr-6 px-2 py-4 h-tableRow truncate
text-palette-600 even:text-palette-400 text-palette-600 even:text-palette-400
first:rounded-l-sm last:rounded-r-sm`, first:rounded-l-sm last:rounded-r-sm`,
})` })`