Compare commits

...

3 Commits

Author SHA1 Message Date
f46bdfc87f Merge pull request 'Tweak Reviewer Cards' (#345) from review-cards into staging
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Reviewed-on: #345
Reviewed-by: itzaname <itzaname@noreply@itzana.me>
2026-03-08 00:18:12 +00:00
d7823a82c0 web: fix script review card style
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2026-03-07 16:14:01 -08:00
ad8be22b87 web: use pointer for review cards 2026-03-07 16:13:47 -08:00

View File

@@ -522,7 +522,10 @@ export default function ReviewerDashboardPage() {
mb: 4
}}>
{canReviewSubmissions && (
<Card onClick={()=>setTabValue(tabIndexSubmissions)}>
<Card
onClick={() => setTabValue(tabIndexSubmissions)}
sx={{ cursor: 'pointer' }}
>
<CardContent>
<Box sx={{ display: 'flex', alignItems: 'center', gap: 2 }}>
<AssignmentIcon sx={{ fontSize: 40, color: 'primary.main' }} />
@@ -546,7 +549,10 @@ export default function ReviewerDashboardPage() {
)}
{canReviewMapfixes && (
<Card onClick={()=>setTabValue(tabIndexMapfixes)}>
<Card
onClick={() => setTabValue(tabIndexMapfixes)}
sx={{ cursor: 'pointer' }}
>
<CardContent>
<Box sx={{ display: 'flex', alignItems: 'center', gap: 2 }}>
<BuildIcon sx={{ fontSize: 40, color: 'secondary.main' }} />
@@ -573,15 +579,7 @@ export default function ReviewerDashboardPage() {
<Card
component={Link}
to="/script-review"
sx={{
textDecoration: 'none',
cursor: 'pointer',
transition: 'transform 0.2s, box-shadow 0.2s',
'&:hover': {
transform: 'translateY(-2px)',
boxShadow: 4
}
}}
sx={{ cursor: 'pointer' }}
>
<CardContent>
<Box sx={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between' }}>