diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml
index 17e7b21..84ced72 100644
--- a/.github/workflows/jekyll-gh-pages.yml
+++ b/.github/workflows/jekyll-gh-pages.yml
@@ -69,7 +69,8 @@ jobs:
# Add Bootstrap classes to tables and images
html_content = re.sub(r'', r'
', html_content)
- html_content = re.sub(r'', r'', html_content)
+ html_content = re.sub(r'', r'', html_content)
+ html_content = re.sub(r'
', r'
', html_content)
# Jinja2 template for HTML output
template = Template('''
@@ -104,6 +105,10 @@ jobs:
color: #ecf0f1;
text-decoration: none;
}
+ nav a.active {
+ background-color: #34495e;
+ color: #ffffff;
+ }
nav a:hover {
background-color: #34495e;
color: #ffffff;
@@ -136,8 +141,11 @@ jobs:
table tbody + tbody {
border-top: 2px solid #dee2e6;
}
- table .table {
- background-color: #fff;
+ .table-responsive {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
}
@@ -148,7 +156,7 @@ jobs:
@@ -161,6 +169,34 @@ jobs:
+