From d4a691ee8a730be6f98f3e3a25897087c636d316 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B5=D0=BD=D0=B8=D1=81=20=D0=92=D0=BE=D1=80=D0=BE?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=D0=B2?= Date: Sun, 13 Aug 2023 23:30:07 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=BE=D0=B2=D0=B0=D1=8F=20=D0=BF=D0=BE?= =?UTF-8?q?=D1=80=D1=82=D1=8F=D0=BD=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/main/style.css | 10 +++------- css/main/style.less | 10 +++------- pages/components/ContractStatus/index.js | 4 ++-- 3 files changed, 8 insertions(+), 16 deletions(-) diff --git a/css/main/style.css b/css/main/style.css index a80a870..1ee97e0 100644 --- a/css/main/style.css +++ b/css/main/style.css @@ -5314,18 +5314,14 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block .block_body .fines_ .contractStatus_modal { position: relative; top: 0; - margin: 100px auto; left: 0; right: 0; - max-width: 1100px; - width: 95%; - padding: 48px; - z-index: 99999; + max-width: 100%; + width: 100%; display: block; background: #fff; - transform: translateY(120px); transition: transform 150ms ease; - overflow: auto; + overflow: hidden; } .contractStatus_modal .modal_header { display: flex; diff --git a/css/main/style.less b/css/main/style.less index 0966273..ec87102 100644 --- a/css/main/style.less +++ b/css/main/style.less @@ -6023,18 +6023,14 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block { .contractStatus_modal { position: relative; top: 0; - margin: 100px auto; left: 0; right: 0; - max-width: 1100px; - width: 95%; - padding: 48px; - z-index: 99999; + max-width: 100%; + width: 100%; display: block; background: #fff; - transform: translateY(120px); transition: transform 150ms ease; - overflow: auto; + overflow: hidden; .modal_header { display: flex; diff --git a/pages/components/ContractStatus/index.js b/pages/components/ContractStatus/index.js index 7278a85..153be8c 100644 --- a/pages/components/ContractStatus/index.js +++ b/pages/components/ContractStatus/index.js @@ -5,7 +5,7 @@ const SingleContractModal = (props) => { const { open, close } = props return ( -
+

Статус сделки

@@ -326,7 +326,7 @@ const SingleContractModal = (props) => {
- + ) }