Skip to content

Commit

Permalink
update ui
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Nov 1, 2024
1 parent 12671d2 commit 4134527
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/listings/ListingGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const ListingGrid = (props: ListingGridProps) => {
<Spinner />
</div>
) : (
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-4 sm:gap-6">
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-6 2xl:grid-cols-8 gap-4">
{listingInfos.map((info) => (
<Link
to={`/item/${info.username}/${info.slug || info.id}`}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/pages/Terminal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ const TerminalPage: React.FC = () => {
<Spinner className="p-1" />
</div>
) : robots && robots.length > 0 ? (
<div className="grid gap-2 md:gap-6 md:grid-cols-1 lg:grid-cols-2">
<div className="grid gap-2 md:gap-6 md:grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 2xl:grid-cols-4">
{robots.map((robot) => (
<RobotCard
key={robot.id}
Expand Down

0 comments on commit 4134527

Please sign in to comment.