diff --git a/src/components/bookings/BookingModal.tsx b/src/components/bookings/BookingModal.tsx index 63d4c73..634a4d7 100644 --- a/src/components/bookings/BookingModal.tsx +++ b/src/components/bookings/BookingModal.tsx @@ -223,7 +223,7 @@ export function BookingModal({ open, draft, rooms, onClose, onSave, existing }: {/* ── BOOKING TAB ── */} {activeTab === 'booking' && (
-
+
{/* ── LEFT COLUMN ── */}
{/* Room */} diff --git a/src/components/layout/Topbar.tsx b/src/components/layout/Topbar.tsx index 6916878..7aa6daa 100644 --- a/src/components/layout/Topbar.tsx +++ b/src/components/layout/Topbar.tsx @@ -58,7 +58,7 @@ function NotificationsPanel({ onClose }: { onClose: () => void }) { : notifications return ( -
+
{/* Header */}
diff --git a/src/pages/DiscountsPage.tsx b/src/pages/DiscountsPage.tsx index 13e8040..bcc487a 100644 --- a/src/pages/DiscountsPage.tsx +++ b/src/pages/DiscountsPage.tsx @@ -376,18 +376,15 @@ export function DiscountsPage() {
- {/* Value badge */} -
+ {/* Value + Actions (right column) */} +

{discount.value === 100 ? 'Бесплатно' : `−${discount.value}${discount.valueType === 'percent' ? '%' : ' ₽'}`}

-
- - {/* Actions */} -
+
+
))} diff --git a/src/pages/PosPage.tsx b/src/pages/PosPage.tsx index 338bc51..811ab70 100644 --- a/src/pages/PosPage.tsx +++ b/src/pages/PosPage.tsx @@ -202,6 +202,22 @@ export function PosPage() { return (
+ {/* ── Desktop-only notice on mobile ── */} +
+
+ +
+
+

Касса — только десктоп

+

+ Откройте приложение на компьютере или планшете для работы с кассой +

+
+
+ + {/* ── Full POS UI (desktop only) ── */} +
+ {/* ── Top bar ── */}
@@ -875,6 +891,7 @@ export function PosPage() {
)} +
{/* end desktop-only wrapper */}
) } diff --git a/src/pages/ReviewsPage.tsx b/src/pages/ReviewsPage.tsx index 7636f9f..e55da22 100644 --- a/src/pages/ReviewsPage.tsx +++ b/src/pages/ReviewsPage.tsx @@ -735,7 +735,7 @@ export function ReviewsPage() { review.status === 'pending' && 'border-red-300 dark:border-red-700/60 bg-red-50/50 dark:bg-red-900/10', )} > -
+
{review.rating}
@@ -808,7 +808,7 @@ export function ReviewsPage() {
{/* Actions */} -
+
{review.status === 'pending' && !review.reply && replyId !== review.id && ( <> + +
- -
diff --git a/src/pages/TariffsPage.tsx b/src/pages/TariffsPage.tsx index fb00878..c98e98b 100644 --- a/src/pages/TariffsPage.tsx +++ b/src/pages/TariffsPage.tsx @@ -508,40 +508,40 @@ export function TariffsPage() {
- {/* Price modifier */} -
-

0 ? 'text-amber-600 dark:text-amber-400' - : tariff.modifierValue < 0 ? 'text-emerald-600 dark:text-emerald-400' - : 'text-slate-500', - )}> - {modLabel} -

-

к базовой цене

-
- - {/* Actions */} -
- - - + {/* Price + Actions (right column) */} +
+
+

0 ? 'text-amber-600 dark:text-amber-400' + : tariff.modifierValue < 0 ? 'text-emerald-600 dark:text-emerald-400' + : 'text-slate-500', + )}> + {modLabel} +

+

к базе

+
+
+ + + +
)