mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
fix username form size on mobile views when stream title name is long
This commit is contained in:
parent
8c8aa31e30
commit
e3375ae8c0
1 changed files with 15 additions and 2 deletions
|
@ -216,7 +216,7 @@ header {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ************************************************8 */
|
/* ************************************************ */
|
||||||
|
|
||||||
|
|
||||||
@media screen and (max-width: 860px) {
|
@media screen and (max-width: 860px) {
|
||||||
|
@ -230,5 +230,18 @@ header {
|
||||||
.instance-title {
|
.instance-title {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ************************************************ */
|
||||||
|
|
||||||
|
|
||||||
|
@media screen and (max-width: 600px) {
|
||||||
|
#user-info-change {
|
||||||
|
width: 75vw;
|
||||||
|
}
|
||||||
|
#user-info-display {
|
||||||
|
max-width: 30vw;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue