With this markup:
<div class="container-fluid">
<div class="row">
<header class="topbar">Topbar component...</header>
</div>
<div class="row">
<div class="col-auto">Sidebar component...</div>
<main class="col main-content border-left">Main content things...</main>
</div>
</div>
This rule doesn't apply anymore:
.topbar.topbar-fixed+* {
margin-top: 70px;
}
I'm not sure what the best solution is, I added a custom class to the second class="row" and gave that a margin-top.
With this markup:
This rule doesn't apply anymore:
I'm not sure what the best solution is, I added a custom class to the second
class="row"and gave that a margin-top.