Skip to content

Commit

Permalink
Notification Loading Hover Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
The-XENO-Studios committed Apr 2, 2024
1 parent 2618a26 commit 63c1d74
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/app/notifications/loading.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../styles/eventCard.css';
import "../styles/eventCard.css";

const loading = () => {
return (
Expand All @@ -17,7 +17,9 @@ const loading = () => {
</div>

<h1 className="text-4xl xsm:text-5xl md:text-6xl">ALL</h1>
<h1 className="text-4xl xsm:text-5xl md:text-6xl text-blue-500">NOTIFICATIONS</h1>
<h1 className="text-4xl xsm:text-5xl md:text-6xl text-blue-500">
NOTIFICATIONS
</h1>
</div>

<div className="w-screen flex justify-center">
Expand All @@ -26,10 +28,12 @@ const loading = () => {
return (
<div
key={i}
className="hover:cursor-pointer w-full h-[7.9rem] md:h-[8.6rem] bg-white border-gray-200 shadow-[5px_5px_30px_5px_#00000024] transition-all duration-500 hover:scale-110 rounded-xl flex justify-between"
className="hover:cursor-pointer w-full h-[7.9rem] md:h-[8.6rem] bg-white border-gray-200 shadow-[5px_5px_30px_5px_#00000024] transition-all duration-500 rounded-xl flex justify-between"
>
<div className="flex flex-col gap-1 flex-[6] p-5">
<h1 className="text-2xl md:text-3xl">Loading Notification...</h1>
<h1 className="text-2xl md:text-3xl">
Loading Notification...
</h1>
<p className="text-sm md:text-base break-words max-w-[90%] line-clamp-1 md:line-clamp-2">
Please wait for notifications to load...
</p>
Expand Down

0 comments on commit 63c1d74

Please sign in to comment.