diff --git a/src/views/DiffChecker.jsx b/src/views/DiffChecker.jsx index 977600e..8af753e 100644 --- a/src/views/DiffChecker.jsx +++ b/src/views/DiffChecker.jsx @@ -113,6 +113,7 @@ const DiffChecker = () => { label="Original text" name="originalText" multiline + rows={20} /> { label="Changed text" name="changedText" multiline + rows={20} />
diff --git a/src/views/DiffChecker.module.scss b/src/views/DiffChecker.module.scss index 1205af6..ad8477b 100644 --- a/src/views/DiffChecker.module.scss +++ b/src/views/DiffChecker.module.scss @@ -15,19 +15,6 @@ .multilineInput { flex: 1; - height: 100%; - & > div { - position: relative; - } - - & > div > textarea { - position: absolute; - max-height: 90%; - max-width: 95%; - @include desktop-up { - max-height: 93%; - } - } } .differenceBlock {