Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/sponsor-tiers/sponsor-tiers.astro
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const formatPrice = (price: number | string) => {
})
.map((tier) => (
<div class="bg-white text-black rounded-2xl p-6 pb-20 relative not-prose z-0">
<div class="h-[160px]">
<div class="min-h-[160px]">
<Ribbon
className={`absolute -right-6 -top-8 ${getRibbonClass(tier.title)}`}
style={{ zIndex: "-1", top: "-55px" }}
Expand Down Expand Up @@ -269,7 +269,7 @@ const formatPrice = (price: number | string) => {

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

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