Skip to content

Commit 9c8959f

Browse files
Fix line-number alignment in hero (#993)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent ce64b71 commit 9c8959f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/ui/layout/hero.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,7 @@ export const Hero: Component = () => {
9999
>
100100
<Index each={snippetLines}>
101101
{(_, index) => (
102-
<pre class="pb-px">
103-
{(index + 1).toString().padStart(2, "0")}
104-
</pre>
102+
<pre>{(index + 1).toString().padStart(2, "0")}</pre>
105103
)}
106104
</Index>
107105
</div>

0 commit comments

Comments
 (0)