Skip to content

Commit

Permalink
style: temporarily adjust the default height of offline cards
Browse files Browse the repository at this point in the history
  • Loading branch information
hamster1963 committed Oct 13, 2024
1 parent 190a4b1 commit a407844
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions components/ServerCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,12 @@ export default function ServerCard({
</Card>
) : (
<Card
className={
"flex flex-col items-center justify-start gap-3 p-3 md:px-5 lg:flex-row"
}
className={cn(
"flex flex-col items-center justify-start gap-3 p-3 md:px-5 lg:flex-row",
showNetTransfer
? "lg:min-h-[91px] min-h-[123px]"
: "lg:min-h-[61px] min-h-[93px]",
)}
>
<Popover>
<PopoverTrigger asChild>
Expand Down

0 comments on commit a407844

Please sign in to comment.