Appview/pages: decrease spacing between languages in repo summary #856

As the title suggests. Currently the language icons have flex-grow, which means they position themselves to take up the full width of the container, which unfortunately makes for awkward readability in most cases. Afaik the description field doesn't allow uploading of images, but you can see the suggestion on discord here. After this change they would just render with the 14 px gap in-between (wrap to second line on overflow, which looks fine too).

Changed files
+1 -1
appview
pages
templates
repo
+1 -1
appview/pages/templates/repo/index.html
···
<div class="px-4 py-2 border-b border-gray-200 dark:border-gray-600 flex items-center gap-4 flex-wrap">
{{ range $value := .Languages }}
<div
-
class="flex flex-grow items-center gap-2 text-xs align-items-center justify-center"
+
class="flex items-center gap-2 text-xs align-items-center justify-center"
>
{{ template "repo/fragments/colorBall" (dict "color" (langColor $value.Name)) }}
<div>{{ or $value.Name "Other" }}