mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-22 07:00:58 -05:00
fix: added shadow on hover
This commit is contained in:
parent
0c9c712ee0
commit
62335e4902
1 changed files with 5 additions and 0 deletions
|
@ -43,10 +43,15 @@ const OverlayBar = styled.div`
|
||||||
top: -18px;
|
top: -18px;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
transition: box-shadow 0.1s ease-out;
|
||||||
|
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
background: var(--primary-header);
|
background: var(--primary-header);
|
||||||
//border: 1px solid var(--background);
|
//border: 1px solid var(--background);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
box-shadow: rgb(0 0 0 / 20%) 0px 2px 10px;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Entry = styled.div`
|
const Entry = styled.div`
|
||||||
|
|
Loading…
Reference in a new issue