Skip to content

Commit

Permalink
account for added content in HorizontalStackedListBox
Browse files Browse the repository at this point in the history
AFAIKS, this is only used in the detail view
  • Loading branch information
xi authored and razzeee committed Oct 12, 2024
1 parent 0f70802 commit 6e39838
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export const HorizontalStackedListBox = ({
return (
<ul
className={clsx(
"flex flex-col sm:flex-row rounded-xl flex-grow",
"flex flex-col md:flex-row rounded-xl flex-grow",
"shadow-md dark:bg-flathub-arsenic dark:divide-flathub-dark-gunmetal",
"sm:divide-x-2 sm:divide-y-0 divide-y-2",
"md:divide-x-2 md:divide-y-0 divide-y-2",
)}
>
{Array.isArray(children) ? (
Expand Down

0 comments on commit 6e39838

Please sign in to comment.