0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

remove .btn-xs reference in docs

This commit is contained in:
Thomas McDonald 2015-08-19 10:38:22 -07:00
parent e7b0d726db
commit 323b9b1320

View File

@ -70,7 +70,7 @@ In need of a button, but not the hefty background colors they bring? Replace the
## Sizes
Fancy larger or smaller buttons? Add `.btn-lg`, `.btn-sm`, or `.btn-xs` for additional sizes.
Fancy larger or smaller buttons? Add `.btn-lg` or `.btn-sm` for additional sizes.
{% example html %}
<button type="button" class="btn btn-primary btn-lg">Large button</button>
@ -82,11 +82,6 @@ Fancy larger or smaller buttons? Add `.btn-lg`, `.btn-sm`, or `.btn-xs` for addi
<button type="button" class="btn btn-secondary btn-sm">Small button</button>
{% endexample %}
{% example html %}
<button type="button" class="btn btn-primary btn-xs">Extra small button</button>
<button type="button" class="btn btn-secondary btn-xs">Extra small button</button>
{% endexample %}
Create block level buttons—those that span the full width of a parent—by adding `.btn-block`.
{% example html %}