x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<div> <div class="d-flex flex-wrap gap-3"> <button type="button" class="btn btn-primary">Primary</button> <button type="button" class="btn btn-secondary">Secondary</button> <button type="button" class="btn btn-success">Success</button> <button type="button" class="btn btn-danger">Danger</button> <button type="button" class="btn btn-warning">Warning</button> <button type="button" class="btn btn-info">Info</button> <button type="button" class="btn btn-light">Light</button> <button type="button" class="btn btn-dark">Dark</button> <button type="button" class="btn btn-link">Link</button> </div> <div class="d-flex flex-wrap gap-3 mt-3"> <button type="button" class="btn btn-outline-primary">Primary</button> <button type="button" class="btn btn-outline-secondary">Secondary</button> <button type="button" class="btn btn-outline-success">Success</button> <button type="button" class="btn btn-outline-danger">Danger</button> <button type="button" class="btn btn-outline-warning">Warning</button> <button type="button" class="btn btn-outline-info">Info</button> <button type="button" class="btn btn-outline-light">Light</button> <button type="button" class="btn btn-outline-dark">Dark</button> <button type="button" class="btn btn-outline-link">Link</button> </div> <div class="d-flex flex-wrap gap-3 mt-3"> <button type="button" class="btn btn-primary btn-lg">Large button</button> <button type="button" class="btn btn-secondary btn-lg">Large button</button> </div> <div class="d-flex flex-wrap gap-3 mt-3"> <button type="button" class="btn btn-primary btn-sm">Small button</button> <button type="button" class="btn btn-secondary btn-sm">Small button</button> </div> <div class="mt-3"> <button type="button" class="btn btn-primary" style="--bs-btn-padding-y: .25rem; --bs-btn-padding-x: .5rem; --bs-btn-font-size: .75rem;"> Custom button </button> </div> <div class="d-flex flex-wrap gap-3 mt-3"> <button type="button" class="btn btn-primary" disabled>Primary button</button> <button type="button" class="btn btn-secondary" disabled>Button</button> <button type="button" class="btn btn-outline-primary" disabled>Primary button</button> <button type="button" class="btn btn-outline-secondary" disabled>Button</button> </div> <div class="d-flex flex-column gap-2 mt-3"> <button class="btn btn-primary" type="button">Button</button> <button class="btn btn-primary" type="button">Button</button> </div> <div class="d-flex flex-wrap gap-3 mt-3"> <div class="d-inline-flex gap-3"> <button type="button" class="btn" data-bs-toggle="button">Toggle button</button> <button type="button" class="btn active" data-bs-toggle="button" aria-pressed="true">Active toggle button</button> <button type="button" class="btn" disabled data-bs-toggle="button">Disabled toggle button</button> </div> <div class="d-inline-flex gap-3"> <button type="button" class="btn btn-primary" data-bs-toggle="button">Toggle button</button> <button type="button" class="btn btn-primary active" data-bs-toggle="button" aria-pressed="true">Active toggle button </button> <button type="button" class="btn btn-primary" disabled data-bs-toggle="button">Disabled toggle button</button> </div> </div></div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<div> <div class="d-flex flex-wrap gap-3"> <button type="button" class="btn btn-primary">Primary</button> <button type="button" class="btn btn-secondary">Secondary</button> <button type="button" class="btn btn-success">Success</button> <button type="button" class="btn btn-danger">Danger</button> <button type="button" class="btn btn-warning">Warning</button> <button type="button" class="btn btn-info">Info</button> <button type="button" class="btn btn-light">Light</button> <button type="button" class="btn btn-dark">Dark</button> <button type="button" class="btn btn-link">Link</button> </div> <div class="d-flex flex-wrap gap-3 mt-3"> <button type="button" class="btn btn-outline-primary">Primary</button> <button type="button" class="btn btn-outline-secondary">Secondary</button> <button type="button" class="btn btn-outline-success">Success</button> <button type="button" class="btn btn-outline-danger">Danger</button> <button type="button" class="btn btn-outline-warning">Warning</button> <button type="button" class="btn btn-outline-info">Info</button> <button type="button" class="btn btn-outline-light">Light</button> <button type="button" class="btn btn-outline-dark">Dark</button> <button type="button" class="btn btn-outline-link">Link</button> </div> <div class="d-flex flex-wrap gap-3 mt-3"> <button type="button" class="btn btn-primary btn-lg">Large button</button> <button type="button" class="btn btn-secondary btn-lg">Large button</button> </div> <div class="d-flex flex-wrap gap-3 mt-3"> <button type="button" class="btn btn-primary btn-sm">Small button</button> <button type="button" class="btn btn-secondary btn-sm">Small button</button> </div> <div class="mt-3"> <button type="button" class="btn btn-primary" style="--bs-btn-padding-y: .25rem; --bs-btn-padding-x: .5rem; --bs-btn-font-size: .75rem;"> Custom button </button> </div> <div class="d-flex flex-wrap gap-3 mt-3"> <button type="button" class="btn btn-primary" disabled>Primary button</button> <button type="button" class="btn btn-secondary" disabled>Button</button> <button type="button" class="btn btn-outline-primary" disabled>Primary button</button> <button type="button" class="btn btn-outline-secondary" disabled>Button</button> </div> <div class="d-flex flex-column gap-2 mt-3"> <button class="btn btn-primary" type="button">Button</button> <button class="btn btn-primary" type="button">Button</button> </div> <div class="d-flex flex-wrap gap-3 mt-3"> <div class="d-inline-flex gap-3"> <button type="button" class="btn" data-bs-toggle="button">Toggle button</button> <button type="button" class="btn active" data-bs-toggle="button" aria-pressed="true">Active toggle button</button> <button type="button" class="btn" disabled data-bs-toggle="button">Disabled toggle button</button> </div> <div class="d-inline-flex gap-3"> <button type="button" class="btn btn-primary" data-bs-toggle="button">Toggle button</button> <button type="button" class="btn btn-primary active" data-bs-toggle="button" aria-pressed="true">Active toggle button </button> <button type="button" class="btn btn-primary" disabled data-bs-toggle="button">Disabled toggle button</button> </div> </div></div>
No notes provided.
No params configured.
No assets to display.
No assets to display.