From 42fa20664a74b35476d1c320a7c84a5bd70361ef Mon Sep 17 00:00:00 2001 From: Vladimir Volek Date: Tue, 30 Oct 2018 17:03:15 +0100 Subject: [PATCH] fix height and eslint --- src/components/Log/index.js | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/components/Log/index.js b/src/components/Log/index.js index 1b19b256..823a58b0 100644 --- a/src/components/Log/index.js +++ b/src/components/Log/index.js @@ -45,18 +45,6 @@ const Click = styled.div` } `; -const Textarea = styled.textarea` - width: 100%; - height: 200px; - min-height: 200px; - resize: vertical; - font-size: 10px; - - &:focus { - box-shadow: none; - } -`; - const StyledParagraph = styled(P)` margin: 10px 0; `; @@ -64,7 +52,7 @@ const StyledParagraph = styled(P)` const LogWrapper = styled.div` background: white; padding: 25px; - height: 500px; + height: 300px; overflow: scroll; `;