From 5f8077824af8b3fc82beaf13059ecb6c2116ac70 Mon Sep 17 00:00:00 2001 From: Layon <144072822+LayonRibeiro@users.noreply.github.com> Date: Tue, 17 Sep 2024 09:06:50 -0300 Subject: [PATCH] Implemented the lateral expansion of the area-box in the forms (create/update) of the quota tariff (#9681) --- ui/src/style/objects/form.scss | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/ui/src/style/objects/form.scss b/ui/src/style/objects/form.scss index ba56694ed38..8ed115b68c4 100644 --- a/ui/src/style/objects/form.scss +++ b/ui/src/style/objects/form.scss @@ -18,11 +18,20 @@ .form { width: 80vw; - .full-width-input { - width: 100%; - } - @media (min-width: 500px) { - width: 400px; + width: fit-content; + min-width: 20vw; } } + +.form textarea { + resize: both; + min-width: 20vw; + max-width: 80vw; +} + +.ant-input-number, +.ant-calendar-picker { + width: 100%; +} +