diff --git a/app/components/BookBuilder/styles/bookBuilder.local.scss b/app/components/BookBuilder/styles/bookBuilder.local.scss
index 664ce9a7804f0281b8a28e540ec8e0fc6c037037..0f75b4f25663322a0c1b33c8ef066f6cee25236b 100644
--- a/app/components/BookBuilder/styles/bookBuilder.local.scss
+++ b/app/components/BookBuilder/styles/bookBuilder.local.scss
@@ -83,9 +83,11 @@ $white: #fff;
     font-weight: 500;
     padding: 0;
     position: relative;
+
     &:hover {
-      background: transparent!important;
+      background: transparent !important;
     }
+
     button {
       float: left;
       position: relative;
diff --git a/app/components/SimpleEditor/panes/Comments/CommentBox.js b/app/components/SimpleEditor/panes/Comments/CommentBox.js
index 283a3096e96d934e76782ae1f29448b26d5d2dfa..80b7c6248c60a2369f14e687f48f0a6899863670 100644
--- a/app/components/SimpleEditor/panes/Comments/CommentBox.js
+++ b/app/components/SimpleEditor/panes/Comments/CommentBox.js
@@ -72,7 +72,8 @@ class CommentBox extends Component {
       const inputBox = $$('div').addClass('sc-new-comment')
         .append(textarea, reply, resolve)
 
-      box.addClass('sc-comment-active')
+      box
+        .addClass('sc-comment-active')
         .append(inputBox)
     }
 
diff --git a/app/components/SimpleEditor/panes/Comments/commentsPane.scss b/app/components/SimpleEditor/panes/Comments/commentsPane.scss
index e374ef6e695fd35111a11fe3f516ba338feda62c..4deca414b095dda9b99972f91f7c8008499b421e 100644
--- a/app/components/SimpleEditor/panes/Comments/commentsPane.scss
+++ b/app/components/SimpleEditor/panes/Comments/commentsPane.scss
@@ -26,9 +26,11 @@ $white: #fff;
     position: absolute;
     word-wrap: break-word;
     z-index: 0;
+
     .sc-new-comment {
       margin: 5px 10px 5px 5px;
     }
+
     textarea {
       background-color: $gray;
       border: 1px solid $dark-gray;
@@ -48,14 +50,14 @@ $white: #fff;
       border: 0;
       border-radius: 50%;
       color: $white;
+      float: right;
       height: 25px;
       margin-bottom: 5px;
-      float: right;
+      position: relative;
+      right: -4px;
       text-align: center;
       transition: .2s;
       width: 25px;
-      position: relative;
-      right: -4px;
 
       &:disabled {
         background-color: $shadow-gray;