You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1002 B
61 lines
1002 B
3 months ago
|
[data-component='Peers'] {
|
||
|
min-height: 100%;
|
||
|
width: 100%;
|
||
|
|
||
|
+desktop() {
|
||
|
width: 100%;
|
||
|
padding: 40px 0 220px 0;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
flex-wrap: wrap;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
align-content: center;
|
||
|
}
|
||
|
|
||
|
+mobile() {
|
||
|
min-height: 100vh;
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
> .peer-container {
|
||
|
overflow: hidden;
|
||
|
|
||
|
AppearFadeIn(1000ms);
|
||
|
|
||
|
+desktop() {
|
||
|
flex: 0 0 auto;
|
||
|
height: 382px;
|
||
|
width: 450px;
|
||
|
margin: 6px;
|
||
|
border: 1px solid rgba(#fff, 0.15);
|
||
|
box-shadow: 0px 5px 12px 2px rgba(#111, 0.5);
|
||
|
transition-property: border-color;
|
||
|
transition-duration: 0.35s;
|
||
|
|
||
|
&.active-speaker {
|
||
|
border-color: #fff;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
+mobile() {
|
||
|
flex: 100 100 auto;
|
||
|
order: 2;
|
||
|
min-height: 25vh;
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
&.active-speaker {
|
||
|
order: 1;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|