Skip to content

Commit

Permalink
fix: docs issue 2,8,10
Browse files Browse the repository at this point in the history
  • Loading branch information
SRIMANKS committed Dec 14, 2023
1 parent 63c31c9 commit bac2f1d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
10 changes: 8 additions & 2 deletions src/app/clusters/clusters.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,19 +54,25 @@
font-family: 'Orbitron';
z-index: 100;
position: absolute;
font-size: 1.4rem;
font-size: 1.2rem;
bottom: 4rem;
left: 50%;
transform: translateX(-50%);
transition: 0.3s;
}
width: 250px;
}

.cover:hover > div .clusterName {
font-size: 1.5rem;
text-shadow: 1px 1px 30px white;
bottom: 4.5rem;
}


.cover:hover > div .clusterName:nth-of-type(3) {
font-size: 0.3rem;
}

.cover:hover > div .textBox {
min-width: 15rem;
bottom: 3.3rem;
Expand Down
5 changes: 3 additions & 2 deletions src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ const Footer = () => {
</div>
<div className="lg:basis-3/5 flex justify-center items-center">
<p className="lg:text-lg sm:text-sm text-xs text-center">
Made With <span className="text-red-500 scale-150">&#x2665;</span> by
Made With <span className="text-red-500 scale-150 animate-pulse">&#x2665;</span>{' '}
by
<a
href="https://delta.nitt.edu/"
className="animate-pulse text-green-600 hover:scale-150 ease-in-out"
className=" text-green-600 hover:scale-150 ease-in-out"
>
{' '}
DELTA FORCE
Expand Down
2 changes: 1 addition & 1 deletion src/components/Menu/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const Menu: React.FC<MenuProps> = ({ isOpened, setIsOpened }) => {
{isOpened ? (
<div className="flex w-full justify-center items-center absolute z-[1000] top-0 left-0 bg-black">
<div
className="absolute top-10 right-10 z-[1001] text-white text-3xl hover:cursor-pointer"
className="absolute top-[2rem] right-[2rem] z-[1001] text-white text-3xl hover:cursor-pointer font-Orbitron"
onClick={() => {
if (setIsOpened) setIsOpened(false);
}}
Expand Down

0 comments on commit bac2f1d

Please sign in to comment.