Skip to content

Commit 41a3f28

Browse files
authored
Merge pull request #32 from DivyeshVora79909/main
fix: profile card overflow bug
2 parents 9afc9eb + 0a767bf commit 41a3f28

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -622,18 +622,18 @@ <h2 class="text-xl font-bold">Follow us</h2>
622622
selectedProfiles.forEach(profile => {
623623
// Create the main container div
624624
var div = `<a href="/${profile.username}" target="_blank">
625-
<div class="bg-[#F3F3F3] p-4 rounded-[30px] border-2 border-b-[4px] md:border-b-[5px] border-black min-h-[120px]">
625+
<div class="bg-[#F3F3F3] p-4 rounded-[30px] border-2 border-b-[4px] md:border-b-[5px] border-black min-h-[120px] h-full">
626626
<div class="flex flex-row">
627-
<div class="flex flex-row">
628-
<div class="flex justify-center items-center flex-row">
627+
<div class="flex flex-row w-full">
628+
<div class="flex justify-center items-center flex-row w-full">
629629
<div class="flex flex-col mr-2">
630630
<div class="min-h-[112px] min-w-[112px]">
631631
<img class="rounded-full w-28 h-28 object-cover"
632632
src="${profile.avatar_url}"
633633
alt="${profile.name}">
634634
</div>
635635
</div>
636-
<div class="flex flex-col ">
636+
<div class="flex flex-col min-w-0">
637637
<span class="md:text-2xl font-bold break-words max-w-[200px]">
638638
${profile.name}
639639
</span>

0 commit comments

Comments
 (0)