mirror of
https://github.com/daylinmorgan/nimpkgs.git
synced 2025-01-22 06:07:33 -06:00
fix: don't show scrollbars on chrome browsers
This commit is contained in:
parent
9f5a274711
commit
ce29752426
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ proc card*(pkg: NimPackage): VNode =
|
||||||
text pkg.alias
|
text pkg.alias
|
||||||
else:
|
else:
|
||||||
span(class = "md:text-xl my-2"): text pkg.description
|
span(class = "md:text-xl my-2"): text pkg.description
|
||||||
tdiv(class = "flex flex-col text-xs md:text-lg overflow-x-scroll"):
|
tdiv(class = "flex flex-col text-xs md:text-lg overflow-x-auto"):
|
||||||
tdiv(class = "flex flex-wrap"):
|
tdiv(class = "flex flex-wrap"):
|
||||||
for t in pkg.tags:
|
for t in pkg.tags:
|
||||||
tdiv(
|
tdiv(
|
||||||
|
|
Loading…
Reference in a new issue