Skip to content

Commit

Permalink
fix(app): add border color (passportxyz#1237)
Browse files Browse the repository at this point in the history
* fix(app): add border color

* fix(app): overflow issue on mobile grid
  • Loading branch information
Tim Schultz authored May 8, 2023
1 parent ca6b332 commit dcb0055
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/components/JsonOutputModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export const JsonOutputModal = ({
maxH="80%"
background="var(--color-background-2)"
textColor="var(--color-text)"
border="solid 1px var(--color-accent-2)"
>
<ModalHeader borderBottomWidth={2} borderBottomColor="var(--color-accent2)">
<p className="font-miriam-libre text-color-1">{title}</p>
Expand Down
2 changes: 1 addition & 1 deletion app/components/PageWidthGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const PageWidthGrid = ({
unconstrainedWidth?: boolean;
}) => (
<div
className={`col-span-full grid w-full grid-cols-4 gap-4 justify-self-center md:grid-cols-6 md:gap-6 lg:grid-cols-8 xl:grid-cols-12 ${className} ${
className={`col-span-full grid w-full grid-cols-4 gap-4 justify-self-center overflow-x-hidden md:grid-cols-6 md:gap-6 lg:grid-cols-8 xl:grid-cols-12 ${className} ${
nested ? "" : PAGE_PADDING
} ${unconstrainedWidth || nested ? "" : CONTENT_MAX_WIDTH_INCLUDING_PADDING}`}
>
Expand Down

0 comments on commit dcb0055

Please sign in to comment.