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:
parent
fa340c3e30
commit
1f319f84a4
2 changed files with 4 additions and 3 deletions
|
@ -58,7 +58,6 @@ body {
|
|||
display: block;
|
||||
font-weight: 100;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
|
|
@ -98,13 +98,15 @@ span.login-img {
|
|||
}
|
||||
|
||||
.about_us h1 {
|
||||
font-size: 80px;
|
||||
font-size: 80px; /** Fallback if vw is not suppoted */
|
||||
font-size: 8vh;
|
||||
font-weight: 300;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.about_us p {
|
||||
font-size: 24px;
|
||||
font-size: 24px; /** Fallback if vw is not suppoted */
|
||||
font-size: 4vh;
|
||||
font-weight: 300;
|
||||
margin: 10px;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue