fix dumb nigger shit

This commit is contained in:
matty 2024-06-19 18:19:19 -04:00
parent 1f3eee9889
commit 1b97366cd8

View File

@ -34,22 +34,31 @@
/* Media query for mobile devices */ /* Media query for mobile devices */
@media only screen and (max-width: 50vw) { @media only screen and (max-width: 50vw) {
#peertube-plugin-livechat-container { #peertube-plugin-livechat-container converse-root {
height: 57vh; /* 100vh - 30vh for video = 70vh remaining */
converse-muc {
height: 57vh;
/* 100vh - 30vh for video = 70vh remaining */
}
} }
} }
/* Media query for tablets in portrait mode */ /* Media query for tablets in portrait mode */
@media only screen and (min-width: 50vw) and (max-width: 75vw) { @media only screen and (min-width: 50vw) and (max-width: 75vw) {
#peertube-plugin-livechat-container { #peertube-plugin-livechat-container converse-root {
height: 65vh; /* Slightly less to account for other elements */ converse-muc {
height: 65vh;
/* Slightly less to account for other elements */
}
} }
} }
/* Media query for tablets in landscape mode */ /* Media query for tablets in landscape mode */
@media only screen and (min-width: 76vw) and (max-width: 100vw) { @media only screen and (min-width: 76vw) and (max-width: 100vw) {
#peertube-plugin-livechat-container { #peertube-plugin-livechat-container converse-root {
height: 70vh; /* Assuming more height can be used */ converse-muc {
height: 70vh;
/* Assuming more height can be used */
}
} }
} }