/video-express-styles.css Secret
Last active
November 2, 2021 16:25
video-express-styles.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
margin: 0; | |
} | |
/* Assuming the name of the PreviewPublisher's container is previewContainer */ | |
#previewContainer { | |
display: flex; | |
flex-direction: column-reverse; | |
align-items: center; | |
justify-content: flex-end; | |
border-color: black; | |
border-radius: 5px; | |
border-style: dashed; | |
width: 640px; | |
height: 480px; | |
padding: 20px; | |
} | |
/* Assuming the name of the Room's container is roomContainer */ | |
#roomContainer { | |
width: 100vw; | |
height: calc(100vh - 90px); | |
background-color: #ddd; | |
position: relative; | |
} | |
#roomContainer > .OT_publisher { | |
top: 25px; | |
right: 25px; | |
position: absolute; | |
border-radius: 10px; | |
} | |
#roomContainer > .OT_screenshare { | |
top: 25px; | |
left: 25px; | |
position: absolute; | |
border-radius: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment