fix: a couple ui fixes (#147)

* fix: reduce loading component width

* improve theme selector for mobile

* match interest graph width to activity grid
This commit is contained in:
Gabe Farrell 2026-01-15 20:21:05 -05:00 committed by GitHub
parent 1eb1cd0fd5
commit aa7fddd518
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 43 additions and 23 deletions

View file

@ -68,14 +68,14 @@ export default function ActivityGrid({
if (isPending) {
return (
<div className="w-[500px]">
<div className="w-[350px]">
<h3>Activity</h3>
<p>Loading...</p>
</div>
);
} else if (isError) {
return (
<div className="w-[500px]">
<div className="w-[350px]">
<h3>Activity</h3>
<p className="error">Error: {error.message}</p>
</div>