From 3091d9e6ddc05586198c364714781cc81720ec0f Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Wed, 2 May 2018 11:48:21 -0700 Subject: [PATCH] fix(feedback): remove textarea overflow hiding to allow scrolling I'm unsure why all textareas need overflow hidden. Doing so essentially overrides what I would expect to be standard textarea behavior. I would rather remove the reset and fix any areas that have issues. --- css/_base.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/css/_base.scss b/css/_base.scss index 4d24ffdda..3d706dd64 100644 --- a/css/_base.scss +++ b/css/_base.scss @@ -66,7 +66,6 @@ input[type="reset"], input[type="submit"] { } textarea { - overflow: hidden; word-wrap: break-word; resize: none; line-height: 1.5em;