Skip to content

Commit

Permalink
docs: fix styles of badges and h{1,6} tags
Browse files Browse the repository at this point in the history
  • Loading branch information
usernein committed Jan 30, 2024
1 parent f0daf9f commit 348a51e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/docs/getting-started/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ sidebar_position: 1
---
# pyromod

<div class="badge-links">
[![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=flat&logo=telegram&logoColor=white)](https://t.me/pyromodchat)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/usernein/pyromod)
[![Downloads](https://static.pepy.tech/badge/pyromod)](https://pepy.tech/project/pyromod)
[![Downloads](https://static.pepy.tech/badge/pyromod/month)](https://pepy.tech/project/pyromod)
</div>

pyromod is a versatile Python add-on for the Pyrogram library, designed to make developing Telegram bots faster and more
efficient.
Expand Down
30 changes: 29 additions & 1 deletion docs/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,32 @@

@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;

h1 {
@apply text-4xl font-bold;
}

h2 {
@apply text-3xl font-bold;
}

h3 {
@apply text-2xl font-bold;
}

h4 {
@apply text-xl font-bold;
}

h5 {
@apply text-lg font-bold;
}

h6 {
@apply text-base font-bold;
}

.badge-links > p {
@apply flex w-full flex-row justify-start items-center gap-3 my-2 flex-wrap;
}

0 comments on commit 348a51e

Please sign in to comment.