Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion client-next/src/app/Home.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@

.activeTab {
color: var(--text-primary);
border-bottom-color: var(--brand);
border-bottom-color: var(--accent);
font-weight: 600;
}

Expand Down
3 changes: 2 additions & 1 deletion client-next/src/app/HomeFeed.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { useState, useEffect, useRef } from 'react'
import Link from 'next/link'
import { useSearchParams } from 'next/navigation'
import FeedCard from '@/components/FeedCard'
import FeedSkeleton from '@/components/FeedSkeleton'
import TopicDropdown from '@/components/TopicDropdown'
import SortDropdown from '@/components/SortDropdown'
import { getExplore, normalizeDiscussion } from '@/lib/api'
Expand Down Expand Up @@ -117,7 +118,7 @@ export default function HomeFeed({ initialDiscussions, initialTopics, initialNex
</div>

{loading ? (
<p className={styles.state}>Loading...</p>
<FeedSkeleton rows={5} />
) : error ? (
<p className={styles.errorState}>{error}</p>
) : discussions.length === 0 ? (
Expand Down
6 changes: 3 additions & 3 deletions client-next/src/app/d/[id]/Discussion.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
color: var(--text-primary);
background: var(--bg-base);
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius-md);
padding: var(--space-2) var(--space-3);
}

Expand All @@ -59,7 +59,7 @@
.searchBtn {
background: none;
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius-md);
padding: var(--space-2) var(--space-3);
font-size: var(--text-sm);
color: var(--text-secondary);
Expand All @@ -82,7 +82,7 @@

.searchResults {
border: 1px solid var(--border);
border-radius: 6px;
border-radius: var(--radius-md);
overflow: hidden;
margin-bottom: var(--space-6);
}
Expand Down
4 changes: 2 additions & 2 deletions client-next/src/app/explore/Explore.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@
}

.mobileTabActive {
background: var(--brand-subtle);
background: var(--accent-subtle);
color: var(--text-primary);
font-weight: 500;
border: 1px solid var(--brand-border);
border: 1px solid var(--border-strong);
}

.controlsRow {
Expand Down
3 changes: 2 additions & 1 deletion client-next/src/app/explore/ExploreFeed.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Link from 'next/link'
import { getFollowingFeed, getBookmarks, getExplore, normalizeDiscussion } from '@/lib/api'
import { discussionPath } from '@/lib/discussionSlug'
import FeedCard from '@/components/FeedCard'
import FeedSkeleton from '@/components/FeedSkeleton'
import BrowseSidebar from '@/components/BrowseSidebar'
import SuggestedAuthors from '@/components/SuggestedAuthors'
import SortDropdown from '@/components/SortDropdown'
Expand Down Expand Up @@ -247,7 +248,7 @@ export default function ExploreFeed({
</div>

{loading ? (
<p className={styles.state}>Loading...</p>
<FeedSkeleton rows={5} />
) : error ? (
<p className={styles.errorState}>{error}</p>
) : discussions.length === 0 ? (
Expand Down
Loading
Loading