From 4a1b608b260813176e7cb2a6e297c8e540193aaa Mon Sep 17 00:00:00 2001 From: Kiril Kartunov Date: Wed, 14 Jun 2023 05:37:00 +0300 Subject: [PATCH 1/3] MP-104 fix icon on collapsible --- .../ui/lib/components/collapsible/Collapsible.module.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libs/ui/lib/components/collapsible/Collapsible.module.scss b/src/libs/ui/lib/components/collapsible/Collapsible.module.scss index 437a3dd73..32b4640a8 100644 --- a/src/libs/ui/lib/components/collapsible/Collapsible.module.scss +++ b/src/libs/ui/lib/components/collapsible/Collapsible.module.scss @@ -19,6 +19,11 @@ .btn { padding-right: 0; + + svg { + width: 24px; + height: 24px; + } } } From 20d37064c126cdb5d6f8ea5a7d3d50b1907ce131 Mon Sep 17 00:00:00 2001 From: Kiril Kartunov Date: Wed, 14 Jun 2023 05:56:46 +0300 Subject: [PATCH 2/3] MP-105 mobile forms fix --- .../src/settings/tabs/AccountSettingsTabs.module.scss | 8 +++++++- .../payment-info-modal/PaymentInfoModal.module.scss | 5 +++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/apps/accounts/src/settings/tabs/AccountSettingsTabs.module.scss b/src/apps/accounts/src/settings/tabs/AccountSettingsTabs.module.scss index ff4633b58..30e3c9b0c 100644 --- a/src/apps/accounts/src/settings/tabs/AccountSettingsTabs.module.scss +++ b/src/apps/accounts/src/settings/tabs/AccountSettingsTabs.module.scss @@ -1,5 +1,11 @@ @import '@libs/ui/styles/includes'; .container { - + form { + @include ltelg { + :global(.input-el) { + margin-bottom: $sp-4; + } + } + } } diff --git a/src/apps/accounts/src/settings/tabs/payments/payment-info-modal/PaymentInfoModal.module.scss b/src/apps/accounts/src/settings/tabs/payments/payment-info-modal/PaymentInfoModal.module.scss index e1e7781fa..35602a125 100644 --- a/src/apps/accounts/src/settings/tabs/payments/payment-info-modal/PaymentInfoModal.module.scss +++ b/src/apps/accounts/src/settings/tabs/payments/payment-info-modal/PaymentInfoModal.module.scss @@ -52,6 +52,11 @@ .modalContentRight { padding-left: $sp-8; + @include ltelg { + padding-left: 0; + margin-top: $sp-8; + } + p { margin-bottom: $sp-4; } From 08153db06e947736cd7f383d8122fb250883f513 Mon Sep 17 00:00:00 2001 From: Kiril Kartunov Date: Wed, 14 Jun 2023 06:00:31 +0300 Subject: [PATCH 3/3] MP-103 fix for os input select on edit --- src/apps/accounts/src/settings/tabs/tools/devices/Devices.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/apps/accounts/src/settings/tabs/tools/devices/Devices.tsx b/src/apps/accounts/src/settings/tabs/tools/devices/Devices.tsx index dc52e81f0..7cfaa4fdc 100644 --- a/src/apps/accounts/src/settings/tabs/tools/devices/Devices.tsx +++ b/src/apps/accounts/src/settings/tabs/tools/devices/Devices.tsx @@ -121,6 +121,9 @@ const Devices: FC = (props: DevicesProps) => { setSelectedDeviceManufacturerModelType({ model: trait.model, }) + setSelectedDeviceManufacturerModelOSType({ + operatingSystem: trait.operatingSystem, + }) setFormErrors({}) }