Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quick color changes #369

Merged
merged 1 commit into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/components/Container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Container = (props: ContainerProps) => {

// Landing page / home path.
if (pathname === "/") {
return <div className="pt-16">{children}</div>;
return <div className="pt-14">{children}</div>;
}

return <div className="container mx-auto pt-24 pb-16 px-8">{children}</div>;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const Footer = () => {
}

return (
<footer className="bg-gray-50 dark:bg-gray-900 text-sm py-20">
<footer className="bg-gray-50 dark:bg-[#191919] text-sm py-20">
<div className="flex flex-col gap-4 mx-12 sm:mx-36">
{/* Logo and Social Links */}
<div className="flex flex-row justify-between items-center mb-8">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/landing/HeroASCIIArt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const HeroASCIIArt = () => {
<div className="relative rounded-lg w-full overflow-hidden">
<div
ref={asciiRef}
className="font-mono text-xs whitespace-pre overflow-hidden m-2 sm:mx-4 md:mx-8 max-w-full max-h-[80vh] rounded-3xl"
className="font-mono text-xs whitespace-pre overflow-hidden m-2 my-4 sm:mx-4 md:mx-8 max-w-full max-h-[80vh] rounded-3xl"
/>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/landing/LandingCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const LandingCard: React.FC<LandingCardProps> = ({
}) => {
return (
<div
className="relative bg-white dark:bg-gray-900 rounded-lg shadow-md overflow-hidden cursor-pointer transition-transform hover:scale-[1.01] dark:shadow-white/10 hover:shadow-lg"
className="relative bg-white dark:bg-[#313131] rounded-lg shadow-md overflow-hidden cursor-pointer transition-transform hover:scale-[1.01] dark:shadow-white/10 hover:shadow-lg"
onClick={onClick}
>
<img
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/nav/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const Navbar = () => {

return (
<>
<nav className="fixed w-full z-30 top-0 start-0 bg-white/80 dark:bg-black/80 backdrop-blur-sm">
<nav className="fixed w-full z-30 top-0 start-0 bg-white/80 dark:bg-[#111111] backdrop-blur-sm">
<div className="flex flex-wrap items-center justify-between py-4 mx-4 sm:mx-8">
<a
className="flex items-center active cursor-pointer"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/pages/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Home = () => {
const navigate = useNavigate();

return (
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100 dark:bg-black">
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100 dark:bg-[#111111]">
<HeroASCIIArt />
<div className="mt-10 mb-20 mx-2 flex flex-col sm:flex-row gap-6 sm:gap-10">
<LandingCard
Expand Down
Loading