Skip to content

Commit 6a44c40

Browse files
committed
Fix sponsor tier style
1 parent 3e5c2ab commit 6a44c40

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/sponsor-tiers/sponsor-tiers.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ const formatPrice = (price: number | string) => {
215215
})
216216
.map((tier) => (
217217
<div class="bg-white text-black rounded-2xl p-6 pb-20 relative not-prose z-0">
218-
<div class="h-[160px]">
218+
<div class="min-h-[160px]">
219219
<Ribbon
220220
className={`absolute -right-6 -top-8 ${getRibbonClass(tier.title)}`}
221221
style={{ zIndex: "-1", top: "-55px" }}
@@ -269,7 +269,7 @@ const formatPrice = (price: number | string) => {
269269

270270
.map((tier) => (
271271
<div class="bg-white text-black rounded-2xl p-6 pb-20 relative not-prose z-0">
272-
<div class="h-[160px]">
272+
<div class="min-h-[160px]">
273273
<Ribbon
274274
className={`absolute -right-6 -top-8 ${getRibbonClass(tier.title)}`}
275275
style={{ zIndex: "-1", top: "-55px" }}
@@ -325,7 +325,7 @@ const formatPrice = (price: number | string) => {
325325

326326
.map((tier) => (
327327
<div class="bg-white text-black rounded-2xl p-6 pb-20 relative not-prose z-0">
328-
<div class="h-[160px]">
328+
<div class="min-h-[160px]">
329329
<Ribbon
330330
className={`absolute -right-6 -top-8 ${getRibbonClass(tier.title)}`}
331331
style={{ zIndex: "-1", top: "-55px" }}
@@ -381,7 +381,7 @@ const formatPrice = (price: number | string) => {
381381
})
382382
.map((tier) => (
383383
<div class="bg-white text-black rounded-2xl p-6 pb-20 relative not-prose z-0">
384-
<div class="h-[160px]">
384+
<div class="min-h-[160px]">
385385
<Ribbon
386386
className={`absolute -right-6 -top-8 ${getRibbonClass(tier.title)}`}
387387
style={{ zIndex: "-1", top: "-55px" }}

0 commit comments

Comments
 (0)