Hey there, I'm diving into Bootstrap for the first time and I'm looking to tweak the 'btn-xs' class to adjust the height, width, and padding. I want to make the button smaller and reduce the text size as well.
I attempted to create a new class called 'custom' and added it to the button code below, but it doesn't seem to be working as expected.
<button class="btn btn-default btn-xs custom" style=""> Filter</button>
Here is the custom CSS I've been working on:
.custom {
font-size: 10px;
padding: 1px 10px}
I'm sure it's something simple that I'm missing. Thanks for any guidance you can provide!