Skip to content

Commit

Permalink
fix(style): ui with max width error
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronConlon committed Jul 25, 2024
1 parent 3ce327b commit 696d80e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/v-next/components/Description.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Filter, LucideTextSelection, Search, Undo2 } from 'lucide-react';
export default function Description() {
return (
<div className="text-black font-semibold">
<div className="flex flex-col md:w-[1200px] max-w-[100vw] mx-auto py-16 px-8 md:px-4 gap-4 xl:gap-8">
<div className="flex flex-col md:w-[1200px] max-w-full mx-auto py-16 px-8 md:px-4 gap-4 xl:gap-8">
<h1 className="text-3xl lg:text-5xl">See It In Action!</h1>
<p className="w-[90%] xl:w-[60%] font-thin">
Have unmaintained or forgotten repos lying around? We can help you find them, quickly and easily.
Expand Down
4 changes: 2 additions & 2 deletions apps/v-next/src/app/more/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Link from 'next/link';
export default function MorePage() {
return (
<div className="bg-gray-50 min-h-[30vw] border-b border-b-gray-100">
<div className="md:w-[1200px] max-w-[100vw] p-16 md:p-4 grid grid-cols-1 sm:grid-cols-[auto_640px] mx-auto items-center text-sm font-thin gap-4 gap-x-24">
<div className="md:w-[1200px] max-w-full p-16 md:p-4 grid grid-cols-1 sm:grid-cols-[auto_640px] mx-auto items-center text-sm font-thin gap-4 gap-x-24">
<h1 className="text-5xl font-semibold py-12">MORE</h1>
<p>
I am tired of repetitive manual tasks, so I try to automate as much as possible. This project is an
Expand All @@ -29,7 +29,7 @@ export default function MorePage() {
</div>
</div>
<div className="bg-white py-12">
<div className="md:w-[1200px] max-w-[100vw] mx-auto">
<div className="md:w-[1200px] max-w-full mx-auto">
<div className="text-md grid grid-cols-1 sm:grid-cols-[auto_200px] gap-4">
<p>Rest assured, the code is open source and will not produce any harmful behavior.</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/v-next/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function Home() {
<main className="flex flex-col">
{/* Basic Info */}
<div className="bg-gray-50 group">
<div className="md:w-[1200px] max-w-[100vw] p-16 md:p-4 grid grid-cols-1 sm:grid-cols-[auto_420px] mx-auto items-center">
<div className="md:w-[1200px] max-w-full p-16 md:p-4 grid grid-cols-1 sm:grid-cols-[auto_420px] mx-auto items-center">
<div className="">
<h1 className="text-2xl md:text-4xl xl:text-5xl font-bold animate-flip-up animate-delay-500 fancy-text">
{PROJECT.description}
Expand Down

0 comments on commit 696d80e

Please sign in to comment.