fix: added shadow on hover

This commit is contained in:
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

View file

@ -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`