I have a website called ranxiguan.com that needs to set the tab as the homepage, so I have made some optimizations to the main tab block
/* Tags page beautification */
@media (min-width:992px){
.TagTiles>li{
width: 30% !important;
border-radius: 15px !important;
margin: 15px;
box-shadow: 0 6px 18px rgba(14,21,47,0.1),0 -2px 6px rgba(14,21,47,0.1);
}
}
@media (max-width:991px) and (min-width:768px){
.TagTiles>li{
width: 45% !important;
border-radius: 15px !important;
margin: 15px;
box-shadow: 0 6px 18px rgba(14,21,47,0.1),0 -2px 6px rgba(14,21,47,0.1);
}
}
@media (max-width: 767px){
.TagTiles>li{
border-radius: 15px !important;
margin: 15px;
box-shadow: 0 6px 18px rgba(14,21,47,0.1),0 -2px 6px rgba(14,21,47,0.1);
}
}