I can't change tag tiles css from admin panel. I would like to fit-size tgs to screen on mobile.
.TagTiles {
display: grid;
grid-gap: 1rem;
grid-template-columns: repeat(auto-fit,minmax(300px,1fr)) !important;
grid-auto-rows: 200px;
}
.TagTiles>li {
width: 100% !important;
border-radius: 5px;
}
@media screen and (max-width: 767.98px) {
.TagTiles {
margin: -15px 0px !important;
}
.TagTiles>li {
margin: 15px 0px !important;
width: 100% !important;
border-radius: 5px;
overflow: auto;
}