fix dumb nigger shit

This commit is contained in:
matty 2024-06-19 18:19:19 -04:00
parent 1f3eee9889
commit 1b97366cd8
1 changed files with 17 additions and 8 deletions

View File

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