Skip to content
Open
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ccc4747
chore: remove pie
fiveminus1 May 27, 2026
fd3cee3
feat: common feedback bars
fiveminus1 May 27, 2026
3324d6d
feat: view more
fiveminus1 May 27, 2026
21ebf32
refactor: migrate to recharts
fiveminus1 May 27, 2026
323a25d
chore: disable focus ring on chart
fiveminus1 May 27, 2026
c549456
fix: pass props to commonfeedback
fiveminus1 May 27, 2026
cf13a27
feat: linearprogress styling
fiveminus1 May 27, 2026
b7c6ed9
feat: common feedback background styling
fiveminus1 May 27, 2026
eb1c37d
feat: init avggpacard
fiveminus1 May 27, 2026
280ebe9
feat: gpa comparison
fiveminus1 May 28, 2026
b7c9964
Merge branch 'main' of https://github.com/icssc/peterportal-client in…
fiveminus1 May 28, 2026
62bd22e
feat: finished gpa comparison
fiveminus1 May 28, 2026
0a0378e
refactor: lift reviews up
fiveminus1 May 28, 2026
2256c80
feat: average quality card
fiveminus1 May 28, 2026
18b1609
chore: commonfeedback -> most used tags
fiveminus1 May 28, 2026
65ff9b0
feat: average difficulty card
fiveminus1 May 28, 2026
fee0216
feat: layout styling
fiveminus1 May 28, 2026
f077c1e
feat: use card for mostuedtags
fiveminus1 May 28, 2026
082cf0e
chore: move recharts outline styling to global styling
fiveminus1 May 28, 2026
b29665c
chore: deleted import
fiveminus1 May 28, 2026
0fe685f
Merge branch 'main' of https://github.com/icssc/peterportal-client in…
fiveminus1 Jun 1, 2026
f5a7266
feat: don't show comparison if all selected and show quarter name
fiveminus1 Jun 2, 2026
a1a793d
feat: loading skeletons
fiveminus1 Jun 2, 2026
8a6e0b3
Merge branch 'main' of https://github.com/icssc/peterportal-client in…
fiveminus1 Jun 3, 2026
2e01431
chore: clean up styles
fiveminus1 Jun 3, 2026
588d812
chore: rename styles
fiveminus1 Jun 3, 2026
36e3aa7
feat: baseline alignment
fiveminus1 Jun 3, 2026
9a3d2e2
feat: reduce gradedist-stats width
fiveminus1 Jun 3, 2026
9aa0d68
feat: no most used tags if no tags
fiveminus1 Jun 3, 2026
3743ec8
feat: new chart colors
fiveminus1 Jun 3, 2026
b2c39ec
fix: colorscale type
fiveminus1 Jun 3, 2026
7bc0152
chore: remove review colors from theme
fiveminus1 Jun 3, 2026
38b088f
card polishing
fiveminus1 Jul 1, 2026
d401423
mobile styling and more
fiveminus1 Jul 1, 2026
d254eab
polished loading skeletons
fiveminus1 Jul 2, 2026
ffcccd3
fix NaN/null flash and change theme colors
fiveminus1 Jul 2, 2026
58560ff
Merge branch 'main' into improved-grade-dist
fiveminus1 Jul 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 126 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"react-router-dom": "^7.0.2",
"react-sortablejs": "^6.1.4",
"react-transition-group": "^4.4.5",
"react-twemoji": "^0.6.0"
"react-twemoji": "^0.6.0",
"recharts": "^3.8.1"
},
"scripts": {
"start": "next start",
Expand Down
11 changes: 11 additions & 0 deletions site/src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -145,3 +145,14 @@ svg {
width: 100%;
overflow: auto;
}

.recharts-wrapper:focus,
.recharts-wrapper *:focus {
outline: none;
}

/* keep outline for users navigating with a keyboard */
.recharts-wrapper:focus-visible,
.recharts-wrapper *:focus-visible {
outline: revert;
}
Loading
Loading