diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-09-23 15:08:26 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-09-23 15:08:26 -0700 |
| commit | 99d19214570845faa9698e3cff80c2f95d2afa6a (patch) | |
| tree | 8e416e0488d364f335b81f4ecedfc6fe99649850 /frontend/src/components | |
| parent | aabcc5f7d6d57e502b4089dc7634b2273437bdc6 (diff) | |
chore: migrate tailwind 3 to tailwind 4
Diffstat (limited to 'frontend/src/components')
| -rw-r--r-- | frontend/src/components/NavBar.tsx | 2 | ||||
| -rw-r--r-- | frontend/src/components/displays/GenericScoreDisplay.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/NavBar.tsx b/frontend/src/components/NavBar.tsx index ac70dfb..045705c 100644 --- a/frontend/src/components/NavBar.tsx +++ b/frontend/src/components/NavBar.tsx @@ -52,7 +52,7 @@ export const NavBar = ({ currentPage, user, handleLogout }: { <div className="flex items-center justify-between h-16"> {/* Logo */} <div className="flex items-center space-x-3"> - <div className="w-8 h-8 bg-gradient-to-r from-violet-600 to-violet-700 rounded-lg flex items-center justify-center shadow-lg"> + <div className="w-8 h-8 bg-linear-to-r from-violet-600 to-violet-700 rounded-lg flex items-center justify-center shadow-lg"> <span className="text-white font-bold text-sm">M</span> </div> <span className="text-white font-semibold text-lg">Mirage</span> diff --git a/frontend/src/components/displays/GenericScoreDisplay.tsx b/frontend/src/components/displays/GenericScoreDisplay.tsx index 41a125c..003f022 100644 --- a/frontend/src/components/displays/GenericScoreDisplay.tsx +++ b/frontend/src/components/displays/GenericScoreDisplay.tsx @@ -373,7 +373,7 @@ const ScoreDisplay: React.FC<ScoreDisplayProps> = ({ return ( <div className="bg-slate-900/50 backdrop-blur-sm border border-slate-800/50 rounded-xl overflow-hidden"> <div className="overflow-x-auto relative"> - <div className="md:hidden absolute right-0 top-0 bottom-0 w-8 bg-gradient-to-l from-slate-900/80 to-transparent pointer-events-none z-10"></div> + <div className="md:hidden absolute right-0 top-0 bottom-0 w-8 bg-linear-to-l from-slate-900/80 to-transparent pointer-events-none z-10"></div> <table className="w-full text-sm min-w-[800px] md:min-w-[1000px]"> <thead className="bg-slate-800/50 border-b border-slate-700/50"> <tr> |
