From 64cd4fa448738cca4a2d96df35984b8c08bd8a4c Mon Sep 17 00:00:00 2001 From: nikita Date: Fri, 25 May 2018 21:10:18 +0300 Subject: [PATCH] long text overflow fix --- web/src/components/CourseRedactor.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/src/components/CourseRedactor.vue b/web/src/components/CourseRedactor.vue index abf84283..15501dad 100644 --- a/web/src/components/CourseRedactor.vue +++ b/web/src/components/CourseRedactor.vue @@ -21,7 +21,7 @@
-
{{titles.courseTitle}}
@@ -1187,5 +1187,10 @@ .course-redactor__preview-button { transition: backgroundColor 0.5s ease-in-out; } + + .field_text { + height: 270px; + overflow: scroll; + }