fix grid-3 to grid-2

This commit is contained in:
austnv
2026-06-07 00:21:32 +03:00
parent fee07ce458
commit eb17a3cd67
+2 -3
View File
@@ -20,7 +20,7 @@
</div>
<!-- Сетка тарифов -->
<div class="grid md:grid-cols-3 gap-8">
<div class="grid md:grid-cols-2 gap-12">
<div
v-for="tariff in tariffCards"
:key="tariff.key"
@@ -81,7 +81,7 @@ const pricingConfig = {
{
key: "premium",
names: { ru: "Premium", en: "Premium"},
descriptions: { ru: "До 10 устройств, сервера РФ , США ", en: "Up to 10 devices, RU 🇷🇺, USA 🇺🇸 servers" },
descriptions: { ru: "До 10 устройств, сервера РФ и США", en: "Up to 10 devices, RU, USA servers" },
prices_rub: { "1": 349.0, "3": 987.0, "6": 1734.0, "12": 1992.0 },
hwid_device_limit: 10,
monthly_gb: 0.0
@@ -121,7 +121,6 @@ const tariffCards = computed(() => {
const ordered = [
{ ...otherTariffs[0], isPopular: false },
{ ...premiumTariff, isPopular: true },
{ ...otherTariffs[1], isPopular: false }
]
return ordered.map(tariff => {