Set minimum size for learner icon in tune list.
Otherwise it vanishes completely at small screen sizes.
This commit is contained in:
parent
504ce9a769
commit
5eb451a3db
|
@ -358,7 +358,8 @@ div.dottes-tune-list-item-learner-link
|
||||||
|
|
||||||
div.dottes-tune-list-item-learner-link img
|
div.dottes-tune-list-item-learner-link img
|
||||||
{
|
{
|
||||||
max-width: 20px;
|
max-width: 25px;
|
||||||
|
min-width: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.dottes-tune-list-item-image
|
div.dottes-tune-list-item-image
|
||||||
|
@ -392,6 +393,10 @@ div.dottes-history-yes
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 480px) {
|
@media only screen and (max-width: 480px) {
|
||||||
|
html {
|
||||||
|
font-size: 62.5%;
|
||||||
|
}
|
||||||
|
|
||||||
div.dottes-transpose-instrument-item
|
div.dottes-transpose-instrument-item
|
||||||
{
|
{
|
||||||
display: table-row;
|
display: table-row;
|
||||||
|
@ -401,7 +406,9 @@ div.dottes-history-yes
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.dottes-transpose-instrument-item h1, p, ul
|
div.dottes-transpose-instrument-item h1,
|
||||||
|
div.dottes-transpose-instrument-item p,
|
||||||
|
div.dottes-transpose-instrument-item ul
|
||||||
{
|
{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
|
Loading…
Reference in New Issue