Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oBusk committed May 22, 2024
1 parent 4290af2 commit 15f8282
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { DiffFileSkeleton } from "./DiffFile";

export default function DiffFilesSkeleton() {
return (
<div className="contain-content min-w-full">
<div className="min-w-full contain-content">
<DiffFileSkeleton />
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/app/[...parts]/_page/NpmDiff/DiffFiles/DiffFiles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const DiffFiles = forwardRef<HTMLElement, DiffFilesProps>(

return (
<section
className={cx("contain-content min-w-full", className)}
className={cx("min-w-full contain-content", className)}
{...props}
ref={ref}
>
Expand Down
2 changes: 1 addition & 1 deletion src/app/_layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface FooterProps extends HTMLAttributes<HTMLDivElement> {}
const Footer = forwardRef<HTMLDivElement, FooterProps>(
({ className, ...props }, ref) => (
<footer
className={cx("contain-content flex", className)}
className={cx("flex contain-content", className)}
{...props}
ref={ref}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const CollapsableBorderBox = forwardRef<
{header}
</CollapsableBorderBoxHeader>
{isExpanded ? (
<div className="mt-[-1px] overflow-auto">{children}</div>
<div className="-mt-px overflow-auto">{children}</div>
) : null}
</BorderBox>
);
Expand Down

0 comments on commit 15f8282

Please sign in to comment.