Skip to content

Commit

Permalink
Height resize and removed growing text on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin-Kwan committed Jan 13, 2024
1 parent 716a10f commit 59da608
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import Link from 'next/link';
import Image from 'next/image';
import { HomeIcon } from '@heroicons/react/24/solid';
import { FaGithub, FaLinkedin } from 'react-icons/fa';
import Home from '../pages';

type NavbarProps = {
isMenuOpen: boolean;
Expand Down
4 changes: 2 additions & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ function Home() {
<main className="flex-1">
<div
id="tsparticles"
style={{ height: 'calc(100vh - 6vh)' }}
style={{ height: 'calc(92vh)' }}
className="w-full relative"
>
{init && (
Expand All @@ -565,7 +565,7 @@ function Home() {
</div> */}
<p
className={
'gradientText text-5xl sm:text-7xl md:text-8xl font-bold mt-4 text-center hover:text-6xl sm:hover:text-8xl md:hover:text-9xl transition-all ease-in-out duration-200'
'gradientText text-5xl sm:text-7xl md:text-8xl font-bold mt-4 text-center sm:hover:text-8xl md:hover:text-9xl transition-all ease-in-out duration-200'
}
style={{
fontFamily: 'Lato, sans-serif',
Expand Down

0 comments on commit 59da608

Please sign in to comment.