We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
any user css files are included before bootstrap. Should be after/last to override instead, eg as in custom.css below:
custom.css
<link rel="stylesheet" href="../_static/basic.css" type="text/css" /> <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> <link rel="stylesheet" type="text/css" href="../_static/graphviz.css" /> <link rel="stylesheet" type="text/css" href="../_static/css/custom.css" /> <link rel="stylesheet" href="../_static/bootstrap-4.3.1-dist/css/bootstrap.min.css" type="text/css" /> <link rel="stylesheet" href="../_static/sphinxbootstrap4.css" type="text/css" />
<link rel="stylesheet" href="../_static/basic.css" type="text/css" /> <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> <link rel="stylesheet" type="text/css" href="../_static/graphviz.css" /> <link rel="stylesheet" href="../_static/bootstrap-4.3.1-dist/css/bootstrap.min.css" type="text/css" /> <link rel="stylesheet" href="../_static/sphinxbootstrap4.css" type="text/css" /> <link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
The text was updated successfully, but these errors were encountered:
This should now be fixed in the below pull request 5d2eb17
Sorry, something went wrong.
No branches or pull requests
any user css files are included before bootstrap. Should be after/last to override instead, eg as in
custom.css
below:Current
Should be
The text was updated successfully, but these errors were encountered: