File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export const EntryItem: Component<EntryItemProps> = props => {
28
28
< small class = "flex w-full gap-1 text-xs text-gray-500 dark:text-gray-400" >
29
29
< span class = "font-medium" > { props . feed . title } </ span >
30
30
< span class = "text-gray-300 dark:text-gray-600" > –</ span >
31
- < span > { dayjs ( props . entry . published_at ) . format ( 'MMMM d , YYYY' ) } </ span >
31
+ < span > { dayjs ( props . entry . published_at ) . format ( 'MMM D , YYYY' ) } </ span >
32
32
</ small >
33
33
</ A >
34
34
) ;
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export const EntryView: ParentComponent<EntryViewProps> = props => {
35
35
36
36
{ local . entry . published_at && (
37
37
< div class = "text-sm text-gray-500 dark:text-gray-400" >
38
- { dayjs ( local . entry . published_at ) . format ( 'MMMM DD , YYYY [at] h:mm a' ) }
38
+ { dayjs ( local . entry . published_at ) . format ( 'MMM D , YYYY [at] h:mm a' ) }
39
39
</ div >
40
40
) }
41
41
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export const FeedItem: Component<FeedItemProps> = props => {
46
46
< span class = "flex-1 overflow-x-hidden truncate" > { props . feed . title } </ span >
47
47
48
48
{ getStats ( ) ?. count_unread && (
49
- < span class = "-mx-1 -my-0.5 shrink-0 rounded-md bg-white px-1 py-0.5 text-xs/4 text-gray-500 dark:bg-gray-800 dark:text-gray-300" >
49
+ < span class = "-mx-1 -my-0.5 w-6 shrink-0 rounded-md bg-white py-0.5 text-center text-xs/4 text-gray-500 dark:bg-gray-800 dark:text-gray-300" >
50
50
{ getStats ( ) ?. count_unread }
51
51
</ span >
52
52
) }
You can’t perform that action at this time.
0 commit comments