mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
46 lines
731 B
Plaintext
46 lines
731 B
Plaintext
.room {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
gap: 30px;
|
|
|
|
.room_views {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
|
|
width: 100%;
|
|
|
|
height: 30vh;
|
|
|
|
padding: 20px 50px;
|
|
|
|
background-color: var(--background-color-accent);
|
|
|
|
border-radius: 12px;
|
|
|
|
&.one {
|
|
justify-content: center;
|
|
}
|
|
|
|
.participant_video {
|
|
height: 100%;
|
|
|
|
video {
|
|
border-radius: 8px;
|
|
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.text_room {
|
|
border-radius: 12px;
|
|
padding: 0 20px;
|
|
}
|
|
} |