Skip to content
Snippets Groups Projects
Commit 66352657 authored by chris's avatar chris
Browse files

linter fixes

parent 5c5d5227
No related branches found
No related tags found
No related merge requests found
...@@ -83,9 +83,11 @@ $white: #fff; ...@@ -83,9 +83,11 @@ $white: #fff;
font-weight: 500; font-weight: 500;
padding: 0; padding: 0;
position: relative; position: relative;
&:hover { &:hover {
background: transparent!important; background: transparent !important;
} }
button { button {
float: left; float: left;
position: relative; position: relative;
......
...@@ -72,7 +72,8 @@ class CommentBox extends Component { ...@@ -72,7 +72,8 @@ class CommentBox extends Component {
const inputBox = $$('div').addClass('sc-new-comment') const inputBox = $$('div').addClass('sc-new-comment')
.append(textarea, reply, resolve) .append(textarea, reply, resolve)
box.addClass('sc-comment-active') box
.addClass('sc-comment-active')
.append(inputBox) .append(inputBox)
} }
......
...@@ -26,9 +26,11 @@ $white: #fff; ...@@ -26,9 +26,11 @@ $white: #fff;
position: absolute; position: absolute;
word-wrap: break-word; word-wrap: break-word;
z-index: 0; z-index: 0;
.sc-new-comment { .sc-new-comment {
margin: 5px 10px 5px 5px; margin: 5px 10px 5px 5px;
} }
textarea { textarea {
background-color: $gray; background-color: $gray;
border: 1px solid $dark-gray; border: 1px solid $dark-gray;
...@@ -48,14 +50,14 @@ $white: #fff; ...@@ -48,14 +50,14 @@ $white: #fff;
border: 0; border: 0;
border-radius: 50%; border-radius: 50%;
color: $white; color: $white;
float: right;
height: 25px; height: 25px;
margin-bottom: 5px; margin-bottom: 5px;
float: right; position: relative;
right: -4px;
text-align: center; text-align: center;
transition: .2s; transition: .2s;
width: 25px; width: 25px;
position: relative;
right: -4px;
&:disabled { &:disabled {
background-color: $shadow-gray; background-color: $shadow-gray;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment