|
|
|
@ -5,16 +5,18 @@ import styled from 'styled-components';
|
|
|
|
|
const Root = styled.div.attrs({
|
|
|
|
|
className: 'lk-button',
|
|
|
|
|
})`
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0.25rem;
|
|
|
|
|
right: 2.25rem;
|
|
|
|
|
padding: 0.125rem;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
|
border-radius: calc(var(--lk-border-radius) / 2);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 0.2s ease-in-out;
|
|
|
|
|
transition-delay: 0.2s;
|
|
|
|
|
.lk-participant-tile & {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0.25rem;
|
|
|
|
|
right: 2.25rem;
|
|
|
|
|
padding: 0.125rem;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
|
border-radius: calc(var(--lk-border-radius) / 2);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 0.2s ease-in-out;
|
|
|
|
|
transition-delay: 0.2s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lk-participant-tile:hover & {
|
|
|
|
|
opacity: 1;
|
|
|
|
|