Skip to content

Commit

Permalink
feat(explore): Minor iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdullah Khan authored and Abdullah Khan committed Oct 8, 2024
1 parent deefe11 commit f446570
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions static/app/views/explore/components/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,12 @@ export function useTableStyles({

export const TableBody = GridBody;
export const TableRow = GridRow;
export const TableBodyCell = styled(GridBodyCell)`
&:first-child {
> * {
text-align: left;
}
}
`;
export const TableBodyCell = GridBodyCell;

export const TableHead = GridHead;
export const TableHeader = Header;
export const TableHeaderActions = HeaderButtonContainer;
export const TableHeaderTitle = HeaderTitle;
export const TableHeadCell = styled(GridHeadCell)<{align?: Alignments}>`
justify-content: ${({isFirst, align}) => (isFirst ? 'left' : align ? align : 'right')};
justify-content: ${({align}) => (align ? align : 'right')};
`;

0 comments on commit f446570

Please sign in to comment.