x
1
2
3
4
5
6
7
8
9
10
11
<div class="buttons has-addons"> <button type="submit" class="button is-success"> Yes </button> <button type="submit" class="button is-info"> Maybe </button> <button type="submit" class="button is-danger"> No </button></div>
1
2
3
4
5
<%= bulma_buttons(attached: true) do |c| %> <% c.with_button('Yes', color: :success) %> <% c.with_button('Maybe', color: :info) %> <% c.with_button('No', color: :danger) %><% end %>
No notes provided.
No params configured.