Commit 7c193407 authored by Emiliano Balbuena's avatar Emiliano Balbuena

(fix): Remove CSS grid tiles minimum size constraints

1 merge request!711WIP: Fix CSS Grid for Pro channel tiles
Pipeline #107325256 failed with stages
in 26 minutes and 7 seconds
......@@ -51,6 +51,11 @@ m-proChannel__home {
@media screen and (max-width: $max-mobile) {
width: 100%;
}
> * {
min-width: 0;
min-height: 0;
}
}
.m-proChannelHome__featuredContent {
......
......@@ -84,15 +84,15 @@ m-pro--channel-list {
list-style: none;
padding: 0;
@media screen and (max-width: $max-mobile) {
grid-template-columns: 100%;
}
> * {
min-width: 0;
min-height: 0;
}
@media screen and (max-width: $max-mobile) {
grid-template-columns: 100%;
}
&.m-proChannelListContent__normalList {
grid-template-columns: 100%;
......
Please register or to comment