Misc web updates (#147)
* Try and clarify max viewer count string * Shrink title font size on small screens to fit username * Hide stream info on small screens to buy some space * Hide emoji button on small screens until we can fix it. For #140 * Make jumping to bottom be a part of the render pass to fix race condition. For #140 * Remove About in info view. We can add it back. Just playing with that since it was missing a space anyway * address some own mr comments Co-authored-by: Ginger Wong <omqmail@gmail.com>
This commit is contained in:
@@ -201,6 +201,11 @@ header {
|
||||
#video-container {
|
||||
min-height: 240px;
|
||||
}
|
||||
}
|
||||
.instance-title {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
/* ************************************************8 */
|
||||
#stream-info {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -102,6 +102,13 @@
|
||||
padding: .25rem;
|
||||
}
|
||||
|
||||
/* Hide emoji button on small screens */
|
||||
@media screen and (max-width: 860px) {
|
||||
#emoji-button {
|
||||
/* Emoji library overrides this so important is needed */
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.message-text .chat-embed {
|
||||
|
||||
Reference in New Issue
Block a user