fixed bugs in form button size

when I saw your webpage I found a bug in button sizes. The medium-sized button is smaller than the small-size button. so I have fixed that bud.
pull/933/head
Kunal Parkar 2023-01-07 00:45:39 +05:30 committed by GitHub
parent ac4a79b7e4
commit 21daada212
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -594,18 +594,18 @@
<div class="buttons">
<!-- Standard button -->
<button type="button" class="btn btn-secondary btn-lg">Large Button</button>
<button type="button" class="btn btn-secondary btn-sm">Medium Button</button>
<button type="button" class="btn btn-secondary btn-xs">Small Button</button>
<button type="button" class="btn btn-secondary btn-xs">Medium Button</button>
<button type="button" class="btn btn-secondary btn-sm">Small Button</button>
<br>
<button type="button" class="btn btn-success btn-lg">Large Button</button>
<button type="button" class="btn btn-success btn-sm">Medium Button</button>
<button type="button" class="btn btn-success btn-xs">Small Button</button>
<button type="button" class="btn btn-success btn-xs">Medium Button</button>
<button type="button" class="btn btn-success btn-sm">Small Button</button>
<br>
<button type="button" class="btn btn-info btn-lg">Large Button</button>
<button type="button" class="btn btn-info btn-sm">Medium Button</button>
<button type="button" class="btn btn-info btn-xs">Small Button</button>
<button type="button" class="btn btn-info btn-xs">Medium Button</button>
<button type="button" class="btn btn-info btn-sm">Small Button</button>
<br>
</div>
</div>