Artist/album details covers for handheld devices

This commit is contained in:
An Phan 2016-01-15 16:26:02 +08:00
parent 03017604ae
commit d65490ed04
2 changed files with 16 additions and 0 deletions

View file

@ -115,12 +115,20 @@
.overview {
position: relative;
padding-left: 84px;
@media only screen and (max-device-width : 768px) {
padding-left: 0;
}
}
.cover {
position: absolute;
left: 0;
top: -7px;
@media only screen and (max-device-width : 768px) {
display: none;
}
}
a.artist {

View file

@ -109,12 +109,20 @@
.overview {
position: relative;
padding-left: 84px;
@media only screen and (max-device-width : 768px) {
padding-left: 0;
}
}
.cover {
position: absolute;
left: 0;
top: -7px;
@media only screen and (max-device-width : 768px) {
display: none;
}
}
}
}