How to override flask_admin style for all templates?
问题 I'm working on simple web application and as for DB display I use Flask_admin module. I would like to apply custom CSS to all my templates e.g. Custom navar with blue border. This is how my index.html template looks like: {% block head %} {{ super() }} .navbar { border-color: #019ced; border-width: 1px; border-radius: 0; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top: none; box-shadow: none; } {% endblock %} It works fine but I would like to apply this custom