Loading...
A guide for migrating your project from Bulma to Apex.
Bulma and Apex both use CSS Grid:
<!-- Bulma -->
<div class="columns">
<div class="column">Content</div>
<div class="column">Content</div>
</div>
<!-- Apex -->
<div class="grid grid-cols-2 gap-4">
<div>Content</div>
<div>Content</div>
</div>Replace Bulma component classes with Apex utility combinations:
<!-- Bulma Button -->
<button class="button is-primary">Button</button>
<!-- Apex -->
<button class="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600">
Button
</button>Bulma modifiers become responsive variants in Apex:
<!-- Bulma Responsive -->
<div class="is-hidden-mobile">Content</div>
<!-- Apex -->
<div class="hidden md:block">Content</div>