openreplay/frontend/app/components/ui/EscapeButton/escapeButton.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

29 lines
No EOL
519 B
CSS

$padding: 23px;
.closeWrapper {
background-color: white;
padding: 10px;
border-radius: 50%;
width: 50px;
height: 50px;
position: fixed;
top: $padding;
right: 20px;
top: 20px;
display: flex;
align-items: center;
justify-content: center;
z-index: 102; /* stay top of the test builer stiky header */
flex-direction: column;
cursor: pointer;
transition: all 0.3s ease-out;
opacity: 0.5;
&:hover {
opacity: 1
}
& div:last-child {
font-size: 8px;
line-height: 12px;
}
}