- Edited
The following CSS is what I personally think is quite suitable. You can make modifications based on this.
Last line of code removes the icon on mobile to achieve more display space.
.TagItem {
width: -webkit-fill-available !important;
height: auto !important;
}
.TagItem-infoContainer .TagItem-info {
max-height: unset !important;
}
.TagItem-infoContainer {
height: unset !important;
width: unset !important;
}
.TagItem-infoContainer .TagItem-children {
padding-bottom: 15px!important;
}
@media (max-width: 767.98px) {
.TagItem-infoContainer .TagItem-icon {
display: none!important;
}
}