fix: added shadow on hover

feat/draggable-server-list
trashtemp 2022-01-14 23:06:47 +01:00
parent 0c9c712ee0
commit 62335e4902
No known key found for this signature in database
GPG Key ID: D1F0DB65081B0FC6
1 changed files with 5 additions and 0 deletions

View File

@ -43,10 +43,15 @@ const OverlayBar = styled.div`
top: -18px;
z-index: 0;
overflow: hidden;
transition: box-shadow 0.1s ease-out;
border-radius: 5px;
background: var(--primary-header);
//border: 1px solid var(--background);
&:hover {
box-shadow: rgb(0 0 0 / 20%) 0px 2px 10px;
}
`;
const Entry = styled.div`