Skip to content

Commit

Permalink
Adjusted padding pixels
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasmine Yuen committed Jan 8, 2025
1 parent 5bce935 commit c002066
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ export default function DataTable({
onClick={() => setPreviewData(file)}
bg={selectedRow === file.id ? theme.primaryColor : ""}
>
<Table.Td style={{ paddingLeft: "50px" }}>
<Table.Td style={{ paddingLeft: "25px" }}>
{getFileNameWithoutExtension(file.mcap_files[0].file_name)}
</Table.Td>
<Table.Td>{file.date}</Table.Td>
<Table.Td>{file.location}</Table.Td>

{/* Change back to notes once notes field is implemented in the server */}
{/* <Table.Td>{file.car_model}</Table.Td> */}
<Table.Td style={{ paddingRight: "50px" }}>
<Table.Td style={{ paddingRight: "25px" }}>
<Input.Wrapper>
<Textarea
variant="unstyled"
Expand Down Expand Up @@ -93,10 +93,10 @@ export default function DataTable({
>
<Table.Thead bg={"#D1BF80"}>
<Table.Tr>
<Table.Th style={{ paddingLeft: "50px" }}>Name</Table.Th>
<Table.Th style={{ paddingLeft: "25px" }}>Name</Table.Th>
<Table.Th>Date</Table.Th>
<Table.Th>Location</Table.Th>
<Table.Th style={{ paddingRight: "50px" }}>Notes</Table.Th>
<Table.Th style={{ paddingRight: "25px" }}>Notes</Table.Th>
</Table.Tr>
</Table.Thead>
<Table.Tbody>{rows}</Table.Tbody>
Expand Down

0 comments on commit c002066

Please sign in to comment.