File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed
components/feedback/badge Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ export default function Loading() {
8
8
< section >
9
9
< div className = "mx-3 mb-2 flex items-center justify-between md:mx-0" >
10
10
< 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 " />
12
12
</ div >
13
13
< SavedFeedListSkeleton />
14
14
</ section >
15
15
< section >
16
16
< div >
17
17
< div className = "mb-2 flex flex-wrap justify-between gap-x-12 gap-y-2" >
18
18
< h2 className = "text-skin-base mx-3 mb-2 flex-auto text-2xl font-semibold md:mx-0" >
19
- Popular Feeds
19
+ Discover Feeds
20
20
</ h2 >
21
21
< div className = "mx-3 md:mx-0" >
22
22
< Search placeholder = "Search for feeds" />
Original file line number Diff line number Diff line change @@ -22,8 +22,11 @@ export default function Page(props: Props) {
22
22
< section >
23
23
< div className = "mx-3 mb-2 flex items-center justify-between md:mx-0" >
24
24
< 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
27
30
</ Link >
28
31
</ div >
29
32
< Suspense fallback = { < SavedFeedListSkeleton /> } >
@@ -34,7 +37,7 @@ export default function Page(props: Props) {
34
37
< div >
35
38
< div className = "mb-2 flex flex-wrap justify-between gap-x-12 gap-y-2" >
36
39
< h2 className = "text-skin-base mx-3 mb-2 flex-auto text-2xl font-semibold md:mx-0" >
37
- Popular Feeds
40
+ Discover Feeds
38
41
</ h2 >
39
42
< div className = "mx-3 md:mx-0" >
40
43
< Search placeholder = "Search for feeds" />
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export default function Badge(props: Props) {
12
12
case "block" :
13
13
return "block" ;
14
14
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 " ;
16
16
default :
17
17
return "inline-flex items-center justify-center px-2 py-1.5" ;
18
18
}
@@ -21,7 +21,7 @@ export default function Badge(props: Props) {
21
21
const getPosition = ( ) => {
22
22
switch ( position ) {
23
23
case "topRight" :
24
- return "-top-2 -end-3 " ;
24
+ return "-top-2 -end-1.5 " ;
25
25
case "topLeft" :
26
26
return "top-0 start-0" ;
27
27
case "bottomRight" :
You can’t perform that action at this time.
0 commit comments