# Button A bare ` ``` ## Submit Inputs `input[type=submit]`, `input[type=reset]`, and `input[type=button]` get the same treatment with no class at all, and take the same modifiers. A submit input is a button to whoever meets it, so it looks and behaves like one: ```html ``` The two modifiers they cannot take are `is-loading` and `is-icon`. Both need content inside the element, and an input is void, with no children and no `::before`. Use a ` ``` ## Sizes | Class | Height | |---|---| | `is-sm` | 32px | | *(default)* | 40px | | `is-lg` | 48px | | `is-hero` | 56px | ## Width, chrome, and state | Class | Effect | |---|---| | `is-block` | Full width | | `is-bare` | Strips all chrome: height, padding, border, background | | `is-loading` | Progress cursor, muted, no pointer events | | `is-disabled` | Disabled look (alongside the `:disabled` attribute) | ` ```