From 71c302856da259b1641817f591f3a2e519df2e45 Mon Sep 17 00:00:00 2001 From: aileenrose Date: Fri, 31 Jul 2020 13:43:12 -0700 Subject: [PATCH] No scroll in textarea in tablet or responsive < 1200px --- website/src/css/components/_GetStarted.scss | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/website/src/css/components/_GetStarted.scss b/website/src/css/components/_GetStarted.scss index 4a7aceefc8e..4729c5c8666 100644 --- a/website/src/css/components/_GetStarted.scss +++ b/website/src/css/components/_GetStarted.scss @@ -39,13 +39,13 @@ &__action { background-color: $light-11; border: 1px solid #dee2e6 !important; - padding: 0.75rem; padding: 1.5rem; min-height: 150px; + resize: none; } - @media (max-width: 768px) { + @media (max-width: 1023.98px) { &__local { - border-right: none; + border-right: none !important; padding-right: 15px; } &__search { @@ -54,11 +54,24 @@ padding-top: 1.5rem; padding-left: 1rem; } + } + @media (max-width: 465px) { textarea { padding: 0.75rem; min-height: 180px; } } + @media (min-width: 768px) and (max-width: 1023.98px) { + textarea { + min-height: 150px; + } + } + @media (min-width: 1024px) and (max-width: 1199.98px) { + textarea { + padding: 0.75rem 0.5rem; + min-height: 170px; + } + } } .get-started.bg-gradient-green-blue {