From 692b29818001080f8cea974d139556b72dfe09c9 Mon Sep 17 00:00:00 2001 From: Chika Date: Wed, 29 Jun 2022 14:46:40 +0300 Subject: [PATCH] layout: fix Form stretched to Settings height --- Components/Calculation/Form/index.jsx | 2 +- Components/Calculation/Results/index.jsx | 2 +- Components/Calculation/Settings/index.jsx | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Components/Calculation/Form/index.jsx b/Components/Calculation/Form/index.jsx index b21b408..426bd96 100644 --- a/Components/Calculation/Form/index.jsx +++ b/Components/Calculation/Form/index.jsx @@ -17,7 +17,7 @@ const Wrapper = styled(Background)` ${min('laptop')} { padding: 4px 6px 10px; - align-self: stretch; + min-height: 770px; } `; diff --git a/Components/Calculation/Results/index.jsx b/Components/Calculation/Results/index.jsx index f34441a..7b062ae 100644 --- a/Components/Calculation/Results/index.jsx +++ b/Components/Calculation/Results/index.jsx @@ -14,7 +14,7 @@ const Wrapper = styled(Background)` ${min('laptop')} { padding: 4px 18px; - min-height: 600px; + min-height: 641px; } `; diff --git a/Components/Calculation/Settings/index.jsx b/Components/Calculation/Settings/index.jsx index a486857..4c84ba5 100644 --- a/Components/Calculation/Settings/index.jsx +++ b/Components/Calculation/Settings/index.jsx @@ -8,6 +8,7 @@ const Wrapper = styled(Background)` padding: 4px 10px; ${min('laptop')} { + min-height: 770px; padding: 4px 18px 10px; } `;