Skip to content

Commit

Permalink
chore: mobile table styling
Browse files Browse the repository at this point in the history
  • Loading branch information
pantheredeye committed Dec 11, 2024
1 parent 2021806 commit cc0f86b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const Success = ({
FindInspectionsListQueryVariables
>) => {
return (
<div className="container mx-auto py-10">
<div className="container mx-auto md:py-10 p-2">
<DataTable columns={columns} data={inspections} />
</div>
)
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/SitesListCell/SitesListCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const Success = ({
sites,
}: CellSuccessProps<FindSitesListQuery, FindSitesListQueryVariables>) => {
return (
<div className="container mx-auto py-10">
<div className="container mx-auto p-2 md:py-10">
<Link
to={routes.newSite()}
className="flex w-full items-center justify-center rounded-xl bg-indigo-600 px-4 py-2 font-medium text-white shadow-lg hover:bg-indigo-500 focus:outline-none"
Expand Down

0 comments on commit cc0f86b

Please sign in to comment.