Skip to content

Commit 234db3c

Browse files
authored
run again tailwind update
1 parent c4cb9d7 commit 234db3c

File tree

19 files changed

+124
-482
lines changed

19 files changed

+124
-482
lines changed

apps/site/components/withBlogCategories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const WithBlogCategories: FC<WithBlogCategoriesProps> = ({
3030
tabs={categories}
3131
activeTab={blogData.category}
3232
>
33-
<div className="max-xs:grid-cols-[1fr] grid grid-cols-[repeat(auto-fill,minmax(theme(spacing.80),1fr))] [grid-gap:theme(spacing.12)_theme(spacing.8)]">
33+
<div className="max-xs:grid-cols-[1fr] grid grid-cols-[repeat(auto-fill,minmax(--spacing(80),1fr))] [grid-gap:--spacing(12)_--spacing(8)]">
3434
{blogData.posts.map(post => (
3535
<BlogPostCard
3636
key={post.slug}

apps/site/pages/en/about/branding.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Credit to [Angela Angelini](https://www.linkedin.com/in/angeliningl/) for design
6666
<img
6767
alt="Node.js Light Stacked Logo"
6868
src="/static/logos/nodejsStackedLight.svg"
69-
className="h-[164px] w-[267px] rounded bg-neutral-950 p-2 dark:bg-transparent"
69+
className="h-[164px] w-[267px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent"
7070
width="267"
7171
height="164"
7272
/>
@@ -83,7 +83,7 @@ Credit to [Angela Angelini](https://www.linkedin.com/in/angeliningl/) for design
8383
<img
8484
alt="Node.js White Stacked Logo"
8585
src="/static/logos/nodejsStackedWhite.svg"
86-
className="rounded bg-neutral-950 p-2 dark:bg-transparent"
86+
className="rounded-sm bg-neutral-950 p-2 dark:bg-transparent"
8787
/>
8888
</td>
8989
</tr>
@@ -108,7 +108,7 @@ Credit to [Angela Angelini](https://www.linkedin.com/in/angeliningl/) for design
108108
<img
109109
alt="White JS Icons"
110110
src="/static/logos/jsIconWhite.svg"
111-
className="height-[80px] mx-auto w-[71px] rounded bg-neutral-950 p-2 dark:bg-transparent"
111+
className="height-[80px] mx-auto w-[71px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent"
112112
width="71"
113113
height="80"
114114
/>

apps/site/pages/es/about/branding.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Créditos a [Angela Angelini](https://www.linkedin.com/in/angeliningl/) por dise
4848
</td>
4949

5050
<td>
51-
<img alt="Logo Apilado Claro de Node.js" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
51+
<img alt="Logo Apilado Claro de Node.js" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
5252
</td>
5353

5454
</tr>
@@ -59,7 +59,7 @@ Créditos a [Angela Angelini](https://www.linkedin.com/in/angeliningl/) por dise
5959
</td>
6060

6161
<td>
62-
<img alt="Logo Apilado Blanco de Node.js" src="/static/logos/nodejsStackedWhite.svg" className="rounded bg-neutral-950 p-2 dark:bg-transparent" />
62+
<img alt="Logo Apilado Blanco de Node.js" src="/static/logos/nodejsStackedWhite.svg" className="rounded-sm bg-neutral-950 p-2 dark:bg-transparent" />
6363
</td>
6464

6565
</tr>
@@ -76,7 +76,7 @@ Créditos a [Angela Angelini](https://www.linkedin.com/in/angeliningl/) por dise
7676
</td>
7777

7878
<td>
79-
<img alt="Iconos Blanco de JS" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
79+
<img alt="Iconos Blanco de JS" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
8080
</td>
8181

8282
</tr>

apps/site/pages/fa/about/branding.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ layout: about
4242
</td>
4343

4444
<td>
45-
<img alt="لوگو تراکم‌یافته روشن Node.js" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
45+
<img alt="لوگو تراکم‌یافته روشن Node.js" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
4646
</td>
4747
</tr>
4848

@@ -52,7 +52,7 @@ layout: about
5252
</td>
5353

5454
<td>
55-
<img alt="لوگو تراکم‌یافته سفید Node.js" src="/static/logos/nodejsStackedWhite.svg" className="rounded bg-neutral-950 p-2 dark:bg-transparent" />
55+
<img alt="لوگو تراکم‌یافته سفید Node.js" src="/static/logos/nodejsStackedWhite.svg" className="rounded-sm bg-neutral-950 p-2 dark:bg-transparent" />
5656
</td>
5757
</tr>
5858
</table>
@@ -66,7 +66,7 @@ layout: about
6666
</td>
6767

6868
<td>
69-
<img alt="آیکون‌های JS سفید" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
69+
<img alt="آیکون‌های JS سفید" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
7070
</td>
7171
</tr>
7272
</table>

apps/site/pages/fr/about/branding.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Crédit à [Angela Angelini](https://www.linkedin.com/in/angeliningl/) pour la c
4848
</td>
4949

5050
<td>
51-
<img alt="Logo empilé clair de Node.js" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
51+
<img alt="Logo empilé clair de Node.js" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
5252
</td>
5353

5454
</tr>
@@ -59,7 +59,7 @@ Crédit à [Angela Angelini](https://www.linkedin.com/in/angeliningl/) pour la c
5959
</td>
6060

6161
<td>
62-
<img alt="Logo empilé blanc de Node.js" src="/static/logos/nodejsStackedWhite.svg" className="rounded bg-neutral-950 p-2 dark:bg-transparent" />
62+
<img alt="Logo empilé blanc de Node.js" src="/static/logos/nodejsStackedWhite.svg" className="rounded-sm bg-neutral-950 p-2 dark:bg-transparent" />
6363
</td>
6464

6565
</tr>
@@ -76,7 +76,7 @@ Crédit à [Angela Angelini](https://www.linkedin.com/in/angeliningl/) pour la c
7676
</td>
7777

7878
<td>
79-
<img alt="Icons JS Blanc" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
79+
<img alt="Icons JS Blanc" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
8080
</td>
8181

8282
</tr>

apps/site/pages/id/about/branding.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Penghargaan kepada [Angela Angelini](https://www.linkedin.com/in/angeliningl/) a
4848
</td>
4949

5050
<td>
51-
<img alt="Logo Terang Bertumpuk Node.js®" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
51+
<img alt="Logo Terang Bertumpuk Node.js®" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
5252
</td>
5353

5454
</tr>
@@ -59,7 +59,7 @@ Penghargaan kepada [Angela Angelini](https://www.linkedin.com/in/angeliningl/) a
5959
</td>
6060

6161
<td>
62-
<img alt="Logo Bertumpuk Putih Node.js" src="/static/logos/nodejsStackedWhite.svg" className="rounded bg-neutral-950 p-2 dark:bg-transparent" />
62+
<img alt="Logo Bertumpuk Putih Node.js" src="/static/logos/nodejsStackedWhite.svg" className="rounded-sm bg-neutral-950 p-2 dark:bg-transparent" />
6363
</td>
6464

6565
</tr>
@@ -76,7 +76,7 @@ Penghargaan kepada [Angela Angelini](https://www.linkedin.com/in/angeliningl/) a
7676
</td>
7777

7878
<td>
79-
<img alt="Ikon JS Putih" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
79+
<img alt="Ikon JS Putih" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
8080
</td>
8181

8282
</tr>

apps/site/pages/ja/about/branding.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Node.jsのロゴやシンボルマークの許可されている利用方法に
4848
</td>
4949

5050
<td>
51-
<img alt="Node.jsライトスタック型ロゴ" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
51+
<img alt="Node.jsライトスタック型ロゴ" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
5252
</td>
5353

5454
</tr>
@@ -59,7 +59,7 @@ Node.jsのロゴやシンボルマークの許可されている利用方法に
5959
</td>
6060

6161
<td>
62-
<img alt="Node.jsホワイトスタック型ロゴ" src="/static/logos/nodejsStackedWhite.svg" className="rounded bg-neutral-950 p-2 dark:bg-transparent" />
62+
<img alt="Node.jsホワイトスタック型ロゴ" src="/static/logos/nodejsStackedWhite.svg" className="rounded-sm bg-neutral-950 p-2 dark:bg-transparent" />
6363
</td>
6464

6565
</tr>
@@ -76,7 +76,7 @@ Node.jsのロゴやシンボルマークの許可されている利用方法に
7676
</td>
7777

7878
<td>
79-
<img alt="JSアイコンホワイト" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
79+
<img alt="JSアイコンホワイト" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
8080
</td>
8181

8282
</tr>

apps/site/pages/ko/about/branding.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Node.js® 로고 및 마크의 허용 가능한 사용에 대한 정보는 [상
4848
</td>
4949

5050
<td>
51-
<img alt="Node.js 밝은 세로 로고" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
51+
<img alt="Node.js 밝은 세로 로고" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
5252
</td>
5353

5454
</tr>
@@ -59,7 +59,7 @@ Node.js® 로고 및 마크의 허용 가능한 사용에 대한 정보는 [상
5959
</td>
6060

6161
<td>
62-
<img alt="Node.js 흰색 세로 로고" src="/static/logos/nodejsStackedWhite.svg" className="rounded bg-neutral-950 p-2 dark:bg-transparent" />
62+
<img alt="Node.js 흰색 세로 로고" src="/static/logos/nodejsStackedWhite.svg" className="rounded-sm bg-neutral-950 p-2 dark:bg-transparent" />
6363
</td>
6464

6565
</tr>
@@ -76,7 +76,7 @@ Node.js® 로고 및 마크의 허용 가능한 사용에 대한 정보는 [상
7676
</td>
7777

7878
<td>
79-
<img alt="흰색 JS 아이콘" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
79+
<img alt="흰색 JS 아이콘" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
8080
</td>
8181

8282
</tr>

apps/site/pages/pt/about/branding.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Crédito a [@Ang_ngl on X](https://x.com/Ang_ngl) por desenhar e contribuir com
4848
</td>
4949

5050
<td>
51-
<img alt="Logótipo Claro Empilhado da Node.js" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
51+
<img alt="Logótipo Claro Empilhado da Node.js" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
5252
</td>
5353

5454
</tr>
@@ -59,7 +59,7 @@ Crédito a [@Ang_ngl on X](https://x.com/Ang_ngl) por desenhar e contribuir com
5959
</td>
6060

6161
<td>
62-
<img alt="Logótipo Empilhado Branco da Node.js" src="/static/logos/nodejsStackedWhite.svg" className="rounded bg-neutral-950 p-2 dark:bg-transparent" />
62+
<img alt="Logótipo Empilhado Branco da Node.js" src="/static/logos/nodejsStackedWhite.svg" className="rounded-sm bg-neutral-950 p-2 dark:bg-transparent" />
6363
</td>
6464

6565
</tr>
@@ -76,7 +76,7 @@ Crédito a [@Ang_ngl on X](https://x.com/Ang_ngl) por desenhar e contribuir com
7676
</td>
7777

7878
<td>
79-
<img alt="Ícones da JS Branco" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
79+
<img alt="Ícones da JS Branco" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
8080
</td>
8181

8282
</tr>

apps/site/pages/tr/about/branding.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Roket Kaplumbağayı tasarlayıp katkıda bulunduğu için [X'de @Ang_ngl](https
4848
</td>
4949

5050
<td>
51-
<img alt="Node.js Aydınlık Dikey Logo" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
51+
<img alt="Node.js Aydınlık Dikey Logo" src="/static/logos/nodejsStackedLight.svg" className="h-[164px] w-[267px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="267" height="164" />
5252
</td>
5353

5454
</tr>
@@ -59,7 +59,7 @@ Roket Kaplumbağayı tasarlayıp katkıda bulunduğu için [X'de @Ang_ngl](https
5959
</td>
6060

6161
<td>
62-
<img alt="Node.js Beyaz Dikey Logo" src="/static/logos/nodejsStackedWhite.svg" className="rounded bg-neutral-950 p-2 dark:bg-transparent" />
62+
<img alt="Node.js Beyaz Dikey Logo" src="/static/logos/nodejsStackedWhite.svg" className="rounded-sm bg-neutral-950 p-2 dark:bg-transparent" />
6363
</td>
6464

6565
</tr>
@@ -76,7 +76,7 @@ Roket Kaplumbağayı tasarlayıp katkıda bulunduğu için [X'de @Ang_ngl](https
7676
</td>
7777

7878
<td>
79-
<img alt="Beyaz JS Simgeleri" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
79+
<img alt="Beyaz JS Simgeleri" src="/static/logos/jsIconWhite.svg" className="height-[80px] mx-auto w-[71px] rounded-sm bg-neutral-950 p-2 dark:bg-transparent" width="71" height="80" />
8080
</td>
8181

8282
</tr>

0 commit comments

Comments
 (0)