Make un-hovered button transparent

This commit is contained in:
Nicolò Maria Mezzopera 2020-05-22 10:34:18 +02:00
parent 5790b5d22e
commit 6151c90d18
No known key found for this signature in database
GPG Key ID: 4FE1B71C61DFFB1F

@ -8,6 +8,7 @@
position: absolute;
bottom: 0;
left: 0;
opacity: 0;
width: 25px;
height: 60px;
transition: all 0.5s;
@ -16,6 +17,7 @@
#semanticButtonContainer:hover {
width: 300px;
opacity: 1;
}
#semanticButtonContainer .buttonContainer {