From 523363fc26fd632625186879404abfc045560d22 Mon Sep 17 00:00:00 2001 From: john <johnbarlas39@gmail.com> Date: Sun, 19 Mar 2017 19:49:09 +0200 Subject: [PATCH] kill gap between mini editor toolbar and body --- .../SimpleEditor/miniEditor/miniEditor.scss | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/app/components/SimpleEditor/miniEditor/miniEditor.scss b/app/components/SimpleEditor/miniEditor/miniEditor.scss index 81526d4..08b488f 100644 --- a/app/components/SimpleEditor/miniEditor/miniEditor.scss +++ b/app/components/SimpleEditor/miniEditor/miniEditor.scss @@ -1,13 +1,16 @@ +$gray: #591818; +$background: #eee; + .sc-prose-editor .sc-mini-editor { - border: 1px solid #591818; + border: 1px solid $gray; height: 160px; width: 360px; - .se-toolbar-wrapper { .sc-toolbar { + background-color: $background; border: 0; - background-color: #EEE; + .sc-tool-group.sm-layout-horizontal > * { margin: 0; } @@ -16,15 +19,17 @@ .se-scrollable { height: 120px; + margin-top: 0; + .se-content { - margin: 0; - background: #EEE; + background: $background; + color: $gray; line-height: 20px; + margin: 0; min-height: 110px; - color: #591818; + .sc-container-editor { padding: 0; - } } -- GitLab