startbootstrap-sb-admin-2
startbootstrap-sb-admin-2 copied to clipboard
Search bar text input slightly less high than Search button
The search input text is not perfectly aligned with the search button :
What do we need to modify so that it would be of the same height?
I must say that since I don't know SCSS yet, I just copied the CSS files (assuming that CSS are the final files and SCSS are just easier for development phase). I don't know if this related.
Just to let you know that it is related to a bootstrap issue : https://github.com/twbs/bootstrap/issues/27629
As a workaround I just overwritten the height to auto in a custom css file :
.form-control {
height: auto;
}
Just to let you know that it is related to a bootstrap issue : twbs/bootstrap#27629
As a workaround I just overwritten the height to auto in a custom css file :
.form-control { height: auto; }
thank you, you can fix form input file type with this solution too.