Currently in the process of updating my frontend from V4 Alpha 6 to the most recent Beta 2 release.
One challenge I am facing pertains to hiding certain 'row' elements using 'hidden-*-down' previously.
Considering the new display classes, would it make sense to implement something like this:
...
<div class="row d-none d-md-flex">
...
Given that rows typically utilize 'flex' display, is this the appropriate approach? It seems somewhat off to me for some reason.
Cheers