Skip to content

Commit

Permalink
fix: add max width properly to article
Browse files Browse the repository at this point in the history
  • Loading branch information
youwen5 committed May 5, 2024
1 parent 5e1af68 commit 3d4e05b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/Blog/Article.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</figure>
</header>

<div class="markdown-body mb-8 font-serif">
<div class="markdown-body mb-8 font-serif max-w-3xl">
{@html doc.content}
</div>
</article>
2 changes: 1 addition & 1 deletion src/lib/styles/markdown.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,6 @@
height: 1em;
}
.hljs {
@apply my-4 rounded-xl shadow-lg overflow-x-auto text-wrap;
@apply my-4 rounded-xl shadow-lg overflow-x-auto;
}
}

1 comment on commit 3d4e05b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (1)

mdlintrc

Previously acknowledged words that are now absent flashcards 🫥
To accept these unrecognized words as correct and remove the previously acknowledged and now absent words, you could run the following commands

... in a clone of the [email protected]:couscousdude/coredump.git repository
on the main branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/couscousdude/coredump/actions/runs/8960147049/attempts/1'
Available 📚 dictionaries could cover words (expected and unrecognized) not in the 📘 dictionary

This includes both expected items (211) from .github/actions/spelling/expect.txt and unrecognized words (1)

Dictionary Entries Covers Uniquely
cspell:cryptocurrencies/cryptocurrencies.txt 125 1 1
cspell:ruby/dict/ruby.txt 157 1 1

Consider adding them (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

      with:
        extra_dictionaries:
          cspell:cryptocurrencies/cryptocurrencies.txt
          cspell:ruby/dict/ruby.txt

To stop checking additional dictionaries, add (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

check_extra_dictionaries: ''
Errors (1)

See the 📜action log or 📝 job summary for details.

❌ Errors Count
❌ check-file-path 1

See ❌ Event descriptions for more information.

Please sign in to comment.