Skip to content

Commit

Permalink
No scroll in textarea in tablet or responsive < 1200px
Browse files Browse the repository at this point in the history
  • Loading branch information
aileenrose committed Jul 31, 2020
1 parent 36dff2b commit 71c3028
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions website/src/css/components/_GetStarted.scss
Expand Up @@ -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 {
Expand All @@ -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 {
Expand Down

0 comments on commit 71c3028

Please sign in to comment.