I'm migrating my frontend from V4 Alpha 6 to the latest (at the time of writing this) Beta 2 release.
However in one portion of my UI I have some 'row' elements that are hidden via 'hidden-*-down' previously.
With the new display classes, is intentional to use something like:
...
<div class="row d-none d-md-flex">
...
Since rows use 'flex' display normally? It just feels incorrect doing it this way for some reason.
Cheers