ConversationView in React

This commit is contained in:
Josh Perez 2021-10-05 12:47:06 -04:00 committed by GitHub
parent dddb3129cc
commit 5fdfa1c632
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 703 additions and 786 deletions

View file

@ -183,4 +183,34 @@
}
}
}
&__attach-file {
width: 32px;
height: 32px;
padding: 0;
opacity: 0.5;
border: none;
background: transparent;
&:focus,
&:hover {
opacity: 1;
}
outline: none;
&:before {
content: '';
display: inline-block;
width: 24px;
height: 24px;
@include light-theme {
@include color-svg('../images/icons/v2/plus-24.svg', $color-gray-75);
}
@include dark-theme {
@include color-svg('../images/icons/v2/plus-24.svg', $color-gray-15);
}
}
}
}