Changing the border color of the Dash Bootstrap Input Box

Hi @anarchocaps ,

This could be achieved with css, just add this to your style.css file

.form-control:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 187, 51, 0.25);
    }
2 Likes