From 71fc73fa3330f89c5f95a322c8cc92a82b4f0674 Mon Sep 17 00:00:00 2001 From: Heiko Salmon Date: Sun, 19 Sep 2021 15:07:34 +0200 Subject: [PATCH] Fix long line issue in dist build --- frontend/src/components/Editor.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Editor.vue b/frontend/src/components/Editor.vue index 8705cbd9..3e314257 100644 --- a/frontend/src/components/Editor.vue +++ b/frontend/src/components/Editor.vue @@ -47,7 +47,8 @@ 'bullist numlist table | outdent indent | removeformat | link hr', skin: false, content_css: false, - content_style: 'body { font-family: \'Helvetica Neue\', \'Segoe UI\', Helvetica, sans-serif; font-size: 15px; line-height: 26px; color: #444; }' + + content_style: 'body { font-family: \'Helvetica Neue\', \'Segoe UI\', Helvetica, ' + + 'sans-serif; font-size: 15px; line-height: 26px; color: #444; }' + 'img { max-width: 100%; }'+ 'a { color: #0055d4; }'+ 'a:hover { color: #111; }'