Browse Source

fix username form size on mobile views when stream title name is long

pull/773/head
Ginger Wong 5 years ago
parent
commit
e3375ae8c0
  1. 15
      webroot/styles/app.css

15
webroot/styles/app.css

@ -216,7 +216,7 @@ header { @@ -216,7 +216,7 @@ header {
}
/* ************************************************8 */
/* ************************************************ */
@media screen and (max-width: 860px) {
@ -230,5 +230,18 @@ header { @@ -230,5 +230,18 @@ header {
.instance-title {
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…
Cancel
Save