Two small radio page tweaks

* SAAS-1055: Radio Page About tab scales poorly with small viewport
heights
* Also fixed misaligned of currently playing track with mobile view
This commit is contained in:
Albert Santoni 2015-09-09 16:03:25 -04:00
parent fa340c3e30
commit 1f319f84a4
2 changed files with 4 additions and 3 deletions

View file

@ -58,7 +58,6 @@ body {
display: block; display: block;
font-weight: 100; font-weight: 100;
width: 100%; width: 100%;
overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }

View file

@ -98,13 +98,15 @@ span.login-img {
} }
.about_us h1 { .about_us h1 {
font-size: 80px; font-size: 80px; /** Fallback if vw is not suppoted */
font-size: 8vh;
font-weight: 300; font-weight: 300;
margin: 10px; margin: 10px;
} }
.about_us p { .about_us p {
font-size: 24px; font-size: 24px; /** Fallback if vw is not suppoted */
font-size: 4vh;
font-weight: 300; font-weight: 300;
margin: 10px; margin: 10px;
} }