Skip to content

Commit

Permalink
css-and-tailwind.mdx (withastro#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
vasfvitor committed Dec 25, 2023
1 parent e5f2545 commit 60182f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/content/docs/pt-br/guides/css-and-tailwind.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Customize os estilos aplicados ao seu site Starlight ao fornecer arquivos CSS ad

2. Adicione o caminho para seu arquivo CSS ao array `customCss` do Starlight em `astro.config.mjs`:

```js
```diff lang="js"
// astro.config.mjs
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
Expand All @@ -32,8 +32,8 @@ Customize os estilos aplicados ao seu site Starlight ao fornecer arquivos CSS ad
starlight({
title: 'Documentação com CSS Customizado',
customCss: [
// Caminho relativo ao seu arquivo CSS customizado
'./src/styles/customizado.css',
+ // Caminho relativo ao seu arquivo CSS customizado
+ './src/styles/customizado.css',
],
}),
],
Expand Down

0 comments on commit 60182f0

Please sign in to comment.