Skip to content

Commit 0078936

Browse files
committed
Fix CSS in Sphinx after breaking change
1 parent 14251d8 commit 0078936

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/src/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
# needs_sphinx = '1.0'
2828

2929
import os
30-
import sys
3130
import subprocess
3231
from datetime import date
3332

docs/src/theme/layout.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{% extends "sphinxdoc/layout.html" %}
22

3-
{% set css_files = css_files + ['_static/bootstrap/css/bootstrap.min.css', '_static/overrides.css'] %}
4-
53
{%- from "relbar.html" import relbar_top with context %}
64

75
{% block htmltitle %}
@@ -36,6 +34,8 @@
3634
<meta property="og:url" content="http://hyper.wickstrom.tech" />
3735
<meta property="og:image" content="http://hyper.wickstrom.tech/_static/icon-large.png" />
3836

37+
<link rel="stylesheet" href="{{ pathto('_static/overrides.css', 1) }}">
38+
<link rel="stylesheet" href="{{ pathto('_static/bootstrap/css/bootstrap.min.css', 1) }}">
3939
<link href="https://fonts.googleapis.com/css?family=Fira+Mono|Fira+Sans:400,400i,600" rel="stylesheet">
4040
{% endblock %}
4141

0 commit comments

Comments
 (0)