When using the well-known framework Bootstrap 4 and Wordpress , Bootstrap "breaks" some styles in the admin panel, and to put it mildly, not really (example below).
Is it possible to load bootstrap styles before loading Wordpress admin panel styles?
Those. before this is displayed:
<link rel='stylesheet' href='http://localhost/wp-admin/load-styles.php... This method does not work:
add_action( 'wp_head', 'load_first', 1 ); Similar problems with some other popular frameworks, for example: UIkit , Bulma . If the Bootstrap styles were loaded before the administration panel styles, then by logic Wordpress styles would become more priority and the situation would be corrected.
Or is another approach needed to solve this problem?

