mirror of https://github.com/Chocobozzz/PeerTube
Fix channels search on mobile
parent
d77433a8a6
commit
c182527a6c
|
@ -132,39 +132,61 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@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;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry {
|
.entry {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
height: auto;
|
height: auto;
|
||||||
text-align: center;
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
&.video {
|
&.video {
|
||||||
.video-info-name,
|
.video-info-name,
|
||||||
.video-info-account {
|
.video-info-account {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
my-video-thumbnail {
|
my-video-thumbnail {
|
||||||
margin-right: 0 !important;
|
margin-right: 0 !important;
|
||||||
|
|
||||||
/deep/ .video-thumbnail {
|
/deep/ .video-thumbnail {
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
|
|
||||||
img {
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.video-channel {
|
||||||
|
.video-channel-info .video-channel-names {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
my-subscribe-button {
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue