how to change card width for mobile view in bootstrap
<style>
@media only screen and (min-width : 768px) {
.card {
display: block !important;
width: 25rem !important;
flex:none !important;
}
}
</style>