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

comment delay fix

parent fd44f433
No related branches found
No related tags found
1 merge request!407Hhmi fixes
...@@ -9,6 +9,7 @@ import CommentBox from '../../ui/comments/CommentBox'; ...@@ -9,6 +9,7 @@ import CommentBox from '../../ui/comments/CommentBox';
const ConnectedCommentStyled = styled.div` const ConnectedCommentStyled = styled.div`
margin-left: ${props => (props.active ? `${-20}px` : `${50}px`)}; margin-left: ${props => (props.active ? `${-20}px` : `${50}px`)};
transition: ${props => (props.active ? `all 1s` : `all 0.5s`)};
position: absolute; position: absolute;
width: 200px; width: 200px;
@media (max-width: 600px) { @media (max-width: 600px) {
......
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