Skip to content

Commit

Permalink
fix: doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-1806 committed Dec 16, 2023
1 parent bac2f1d commit 979cddc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/app/gallery/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ const History = () => {
objectFit="cover"
objectPosition="center"
className={
'max-sm:rounded-xl md:opacity-60 ' + 'carousel-torch'
'max-sm:rounded-xl md:opacity-60 md:hover:opacity-100 ' +
'carousel-torch'
}
alt="history"
/>
Expand Down
4 changes: 4 additions & 0 deletions src/components/AuthLayout/form.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,10 @@ div.formInput {

.submitButton:hover {
cursor: pointer;
text-shadow:
0 0 20px #fff,
0 0 30px #fff,
0 0 40px #fff;
}


Expand Down
2 changes: 1 addition & 1 deletion src/components/BackButton/back.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const ImageChanger = (props: ImageChangerProps) => {
<Image
src={isHovered ? props.hoverImage : props.defaultImage}
alt="Back to cluster"
className={`${styles.Back} xl:w-52 lg:w-44 md:w-32 sm:w-24 w-16 absolute left-28 top-32 max-md:hidden z-20`}
className={`${styles.Back} xl:w-52 lg:w-44 md:w-32 sm:w-24 w-16 absolute left-28 top-32 z-20 max-md:left-10 max-md:w-28`}
onClick={() => {
router.push('/clusters');
}}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Carousel/slideData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ const SlideData: React.FC<SlideDataProps> = ({ details }) => {
)}
</div>
<div className="flex justify-center align-bottom w-1/4 h-full max-lg:hidden">
<div className="font-OrbitronG 2xl:text-base xl:text-sm lg:text-sm sm:text-sm text-sm mt-auto mb-auto">
<div className="font-OrbitronG 2xl:text-base xl:text-sm lg:text-sm sm:text-sm text-sm mt-auto pb-[0.35rem]">
PRIZE MONEY : {details.price}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavBar/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const NavBar = ({ NavRef }: NavBarProps) => {
</Link> */}

{authButton}
{mobileAuthButton}
<div className="lg:hidden">{mobileAuthButton}</div>
<Image
src={hamburgerIcon}
alt="Hamburger Icon"
Expand Down

0 comments on commit 979cddc

Please sign in to comment.