Skip to content

Commit

Permalink
fix: missing padding in projects code block (#128)
Browse files Browse the repository at this point in the history
Closes #126
  • Loading branch information
IdoBouskila committed Feb 27, 2024
1 parent 443184e commit 8677af3
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/pages/projects/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,15 @@ export default function Projects(): JSX.Element {
repository locally:
</p>
<CodeBlock language="shell">
{`git clone https://github.com/LearningTypeScript/projects learning-typescript-projects
<div className="code-container line">
<code>
{
`git clone https://github.com/LearningTypeScript/projects learning-typescript-projects
cd learning-typescript-projects
npm i`}
npm i`
}
</code>
</div>
</CodeBlock>
<div className={styles.chapters}>
{chapterNames.map((chapterName, index) => {
Expand Down

0 comments on commit 8677af3

Please sign in to comment.