Recently revisited an older project I had started some time ago using the Bulma framework. However, for some reason, the 0.8.0 CDN is not being imported or recognized correctly by the spacing classes. Here's the code snippet I had initially:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="6d0f1801000c2d5d4355435d">[email protected]</a>/css/bulma.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fontawesome/5.10.1/css/all.css">
<section class="section">
<div class="container">
<h1 class="title has-text-centered mt-6">Some text</h1>
...
...
</div>
</section>
However, the title text was consistently getting cut off by the navbar, as shown in this screenshot.
https://i.sstatic.net/N8DyJ.png
Upon updating to a newer CDN version (0.9.0) like this:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="82e0f7eeefe3c2b2acbbacb2">[email protected]</a>/css/bulma.min.css">
the spacing class/helper was properly recognized. Has anyone else encountered this issue before? It seems like changing just one character (from 8 to 9) fixed it, but I'm worried about potential future implications. I can't recall the documentation for version 0.8.0, but I believe mt-6
should remain consistent across both versions...