mirror of
https://github.com/revoltchat/revite.git
synced 2024-12-24 22:52:09 -05:00
Updated replies
This commit is contained in:
parent
2141711d9e
commit
4eb0461977
1 changed files with 18 additions and 0 deletions
|
@ -50,6 +50,13 @@ export const ReplyBase = styled.div<{
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
span {
|
||||||
|
cursor: pointer;
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*&::before {
|
/*&::before {
|
||||||
position:relative;
|
position:relative;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
|
@ -64,6 +71,17 @@ export const ReplyBase = styled.div<{
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
transition: filter 1s ease-in-out;
|
||||||
|
transition: transform ease-in-out .1s;
|
||||||
|
filter: brightness(1);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
filter: brightness(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
transform: translateY(1px);
|
||||||
|
}
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
|
Loading…
Reference in a new issue