Skip to content

Commit b313eac

Browse files
committed
Make logos great again
1 parent 22d0a0e commit b313eac

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

shipixen/components/blog/HomeList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ function SubcategoryFilter({
274274
className={`text-xs px-4 py-2 rounded transition-colors font-display ${
275275
selectedSubcategories.includes(subcategory!)
276276
? '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'
278278
}`}
279279
>
280280
{subcategory}

shipixen/components/blog/home/PostItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export function PostItem({
9898
/>
9999
)}
100100

101-
<section className={clsx('w-full flex items-center gap-2')}>
101+
<section className={clsx('w-full flex flex-wrap items-center gap-2')}>
102102
<div className="flex gap-2 items-center truncate">
103103
<figure
104104
className={clsx(
@@ -128,7 +128,7 @@ export function PostItem({
128128
</div>
129129
</div>
130130

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">
132132
<span
133133
className={cn(
134134
'flex-col flex gap-1 items-center text-[0.7rem] sm:text-xs p-2 min-w-[40px]',
Loading

shipixen/scripts/parse-app-info.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ async function fetchAssets(app) {
140140
}
141141

142142
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;
146146
}
147147
} catch (error) {
148148
console.error(`Failed to fetch assets for ${app.name}:`, error.message);

0 commit comments

Comments
 (0)