We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ccff7d commit 9565885Copy full SHA for 9565885
src/components/sponsor-tiers/sponsor-tiers.astro
@@ -250,7 +250,7 @@ const formatPrice = (price: number | string) => {
250
<h2 class="text-3xl font-bold">Starter Tiers</h2>
251
<p class="text-xl mt-2 mb-12">Perfect opportunity for companies with more modest budgets</p>
252
</div>
253
- <div class="grid grid-cols-1 sm:grid-cols-2 gap-10">
+<div class="grid grid-cols-1 md:grid-cols-2 gap-10 md:gap-9 lg:gap-10 w-full md:w-5/6 lg:w-5/6 mx-auto">
254
{tiers.filter(tier => tier.title === "Patron" || tier.title === "Bronze")
255
.sort((a, b) => {
256
const order = { "Patron": 1, "Bronze": 2};
0 commit comments