Skip to content

Commit 0f19e24

Browse files
committed
Fix line-number alignment in hero
1 parent d2978b5 commit 0f19e24

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)