x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="buttons"> <button type="submit" class="button is-small"> Small </button> <button type="submit" class="button is-normal"> Normal </button> <button type="submit" class="button is-medium"> Medium </button> <button type="submit" class="button is-large"> Large </button></div>
1
2
3
4
5
6
<div class="buttons"> <%= bulma_button(size: :small) { "Small" } %> <%= bulma_button(size: :normal) { "Normal" } %> <%= bulma_button(size: :medium) { "Medium" } %> <%= bulma_button(size: :large) { "Large" } %></div>
No notes provided.
No params configured.