openreplay/frontend/app/components/Session_/Player/Overlay/PlayIconLayer.module.css
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

17 lines
No EOL
306 B
CSS

.iconWrapper {
background-color: rgba(0, 0, 0, 0.1);
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
opacity: 0;
transition: all .2s; /* Animation */
}
.zoomIcon {
opacity: 1;
transform: scale(1.8);
transition: all .8s;
}