You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Right align links inside a header
h1, h2, h3, h4 {
display: flex;
justify-content: space-between;
a {
margin-top: auto;
@extend .btn;
@extend .btn-sm;
}
}
Unfortunately, this doesn't just right align link inside a header but forces all children of an h* to be justified (e.g. <h1><span>A</span> <span>B</span></h1>)
I don't think we can assume this should be the default case for all h* so I think we just have to live with this being triggered by a specific class on the h*.
The text was updated successfully, but these errors were encountered:
_body.scss
includes:Unfortunately, this doesn't just right align link inside a header but forces all children of an h* to be justified (e.g.
<h1><span>A</span> <span>B</span></h1>
)I don't think we can assume this should be the default case for all h* so I think we just have to live with this being triggered by a specific class on the h*.
The text was updated successfully, but these errors were encountered: