File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
public/static/images/product/tim-time-tracker Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ function SubcategoryFilter({
274
274
className = { `text-xs px-4 py-2 rounded transition-colors font-display ${
275
275
selectedSubcategories . includes ( subcategory ! )
276
276
? 'bg-primary-500 text-white'
277
- : 'bg-primary-100/30 text-gray -700 dark:bg-primary-800/20 dark:text-white'
277
+ : 'bg-primary-100/30 text-purple -700/80 dark:bg-primary-800/20 dark:text-white'
278
278
} `}
279
279
>
280
280
{ subcategory }
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export function PostItem({
98
98
/>
99
99
) }
100
100
101
- < section className = { clsx ( 'w-full flex items-center gap-2' ) } >
101
+ < section className = { clsx ( 'w-full flex flex-wrap items-center gap-2' ) } >
102
102
< div className = "flex gap-2 items-center truncate" >
103
103
< figure
104
104
className = { clsx (
@@ -128,7 +128,7 @@ export function PostItem({
128
128
</ div >
129
129
</ div >
130
130
131
- < div className = "ml-auto flex-shrink flex gap-2 tabular-nums max-w-sm text-right" >
131
+ < div className = "ml-auto w-full sm:w-auto flex-shrink flex gap-2 tabular-nums max-w-sm text-left sm: text-right" >
132
132
< span
133
133
className = { cn (
134
134
'flex-col flex gap-1 items-center text-[0.7rem] sm:text-xs p-2 min-w-[40px]' ,
Original file line number Diff line number Diff line change @@ -140,9 +140,9 @@ async function fetchAssets(app) {
140
140
}
141
141
142
142
if ( faviconUrl && faviconUrl . endsWith ( '.png' ) ) {
143
- const faviconPath = path . join ( appDir , 'favicon .png' ) ;
144
- await downloadImage ( faviconUrl , faviconPath ) ;
145
- app . logo = faviconPath ;
143
+ const logoPath = path . join ( appDir , 'logo .png' ) ;
144
+ await downloadImage ( faviconUrl , logoPath ) ;
145
+ app . logo = logoPath ;
146
146
}
147
147
} catch ( error ) {
148
148
console . error ( `Failed to fetch assets for ${ app . name } :` , error . message ) ;
You can’t perform that action at this time.
0 commit comments