Skip to content

Commit 2c9549e

Browse files
committed
Merge branch 'preview'
2 parents 38c48c2 + 570783c commit 2c9549e

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

src/app/dashboard/feeds/loading.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ export default function Loading() {
88
<section>
99
<div className="mx-3 mb-2 flex items-center justify-between md:mx-0">
1010
<h2 className="text-skin-base text-2xl font-semibold">My Feeds</h2>
11-
<div className="bg-skin-muted h-5 w-5 rounded-lg" />
11+
<div className="bg-skin-muted h-9 w-24 rounded-xl" />
1212
</div>
1313
<SavedFeedListSkeleton />
1414
</section>
1515
<section>
1616
<div>
1717
<div className="mb-2 flex flex-wrap justify-between gap-x-12 gap-y-2">
1818
<h2 className="text-skin-base mx-3 mb-2 flex-auto text-2xl font-semibold md:mx-0">
19-
Popular Feeds
19+
Discover Feeds
2020
</h2>
2121
<div className="mx-3 md:mx-0">
2222
<Search placeholder="Search for feeds" />

src/app/dashboard/feeds/page.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@ export default function Page(props: Props) {
2222
<section>
2323
<div className="mx-3 mb-2 flex items-center justify-between md:mx-0">
2424
<h2 className="text-skin-base text-2xl font-semibold">My Feeds</h2>
25-
<Link href="/dashboard/settings/my-feeds">
26-
<FaSlidersH className="text-skin-icon-muted hover:text-skin-icon-base text-xl" />
25+
<Link
26+
href="/dashboard/settings/my-feeds"
27+
className="font-medium text-skin-base border border-skin-base bg-skin-secondary hover:brightness-95 px-3 py-1.5 rounded-xl"
28+
>
29+
Edit feeds
2730
</Link>
2831
</div>
2932
<Suspense fallback={<SavedFeedListSkeleton />}>
@@ -34,7 +37,7 @@ export default function Page(props: Props) {
3437
<div>
3538
<div className="mb-2 flex flex-wrap justify-between gap-x-12 gap-y-2">
3639
<h2 className="text-skin-base mx-3 mb-2 flex-auto text-2xl font-semibold md:mx-0">
37-
Popular Feeds
40+
Discover Feeds
3841
</h2>
3942
<div className="mx-3 md:mx-0">
4043
<Search placeholder="Search for feeds" />

src/components/feedback/badge/Badge.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default function Badge(props: Props) {
1212
case "block":
1313
return "block";
1414
case "overlay":
15-
return "absolute inline-flex items-center justify-center w-6 h-6";
15+
return "absolute inline-flex items-center justify-center w-5 h-5";
1616
default:
1717
return "inline-flex items-center justify-center px-2 py-1.5";
1818
}
@@ -21,7 +21,7 @@ export default function Badge(props: Props) {
2121
const getPosition = () => {
2222
switch (position) {
2323
case "topRight":
24-
return "-top-2 -end-3";
24+
return "-top-2 -end-1.5";
2525
case "topLeft":
2626
return "top-0 start-0";
2727
case "bottomRight":

0 commit comments

Comments
 (0)