Fix channels search on mobile

pull/1018/head
Chocobozzz 2018-09-05 11:42:13 +02:00
parent d77433a8a6
commit c182527a6c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 43 additions and 21 deletions

View File

@ -132,10 +132,19 @@
} }
} }
@media screen and (max-width: 800px) { @media screen and (max-width: $small-view) {
.video-channel-names {
flex-direction: column !important;
.video-channel-name {
margin-left: 0 !important;
}
}
}
@media screen and (max-width: $mobile-view) {
.search-result { .search-result {
padding: 20px 10px; padding: 20px 10px;
}
.results-header { .results-header {
font-size: 15px !important; font-size: 15px !important;
@ -144,6 +153,8 @@
.entry { .entry {
flex-direction: column; flex-direction: column;
height: auto; height: auto;
justify-content: center;
align-items: center;
text-align: center; text-align: center;
&.video { &.video {
@ -166,5 +177,16 @@
} }
} }
} }
&.video-channel {
.video-channel-info .video-channel-names {
align-items: center;
}
my-subscribe-button {
margin-top: 5px;
}
}
}
} }
} }