From 8db0851e564f1dde4ceeba5d5fabc0654c2652b0 Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Tue, 10 Feb 2026 17:49:14 +0700 Subject: [PATCH] Clarify monetization mechanics --- app/app.vue | 45 ++++++++++++++++++++++++++++++--------------- 1 file changed, 30 insertions(+), 15 deletions(-) diff --git a/app/app.vue b/app/app.vue index a1bde03..841ae2c 100644 --- a/app/app.vue +++ b/app/app.vue @@ -160,7 +160,7 @@
@@ -435,7 +446,7 @@ const flowNodes = ref([ { id: '2', type: 'step', - position: { x: 180, y: 40 }, + position: { x: 200, y: 40 }, data: { step: '02', title: 'Смета и этапы', @@ -445,7 +456,7 @@ const flowNodes = ref([ { id: '3', type: 'step', - position: { x: 360, y: 40 }, + position: { x: 400, y: 40 }, data: { step: '03', title: 'Создание заявки', @@ -455,7 +466,7 @@ const flowNodes = ref([ { id: '4', type: 'step', - position: { x: 540, y: 40 }, + position: { x: 600, y: 40 }, data: { step: '04', title: 'Выбор исполнителя', @@ -465,7 +476,7 @@ const flowNodes = ref([ { id: '5', type: 'step', - position: { x: 720, y: 40 }, + position: { x: 800, y: 40 }, data: { step: '05', title: 'Эскроу и запуск', @@ -475,7 +486,7 @@ const flowNodes = ref([ { id: '6', type: 'step', - position: { x: 900, y: 40 }, + position: { x: 1000, y: 40 }, data: { step: '06', title: 'Фиксация прогресса', @@ -485,7 +496,7 @@ const flowNodes = ref([ { id: '7', type: 'step', - position: { x: 1080, y: 40 }, + position: { x: 1200, y: 40 }, data: { step: '07', title: 'Приемка и расчет', @@ -562,13 +573,17 @@ html { .flow-wrapper { width: 100%; - height: 320px; + height: 420px; overflow-x: auto; overflow-y: hidden; scrollbar-width: thin; position: relative; } +.flow-panel { + border: none; +} + .flow-wrapper::-webkit-scrollbar { height: 8px; } @@ -590,8 +605,8 @@ html { .flow-card { - min-width: 160px; - max-width: 160px; + min-width: 180px; + max-width: 180px; background: rgba(255, 255, 255, 0.78); border: 1px solid rgba(20, 20, 20, 0.12); box-shadow: 0 14px 30px rgba(20, 20, 20, 0.14);