Is it common to call media queries to restructure your elements manually when using Bootstrap?
In other words, if I have a custom element that I want to displayed or positioned in a certain way, is it ok to call the media query directly and reposition it there or the recommended way is to try to use Bootstrap's classes to make it behave the way you want to?
Something like...
// Calling the media query
@media (max-width: 768px) {
.my-element{
background: red;
}
}
FYI - When I say calling media queries I'm referring to the default media queries in Bootstrap, 750px
, 970px
and 1170px
.
Thanks