diff --git a/CHANGELOG.md b/CHANGELOG.md index ffab2d6..ea879f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Added `allow-prereleases: true` to all Python setup steps in GitHub Actions workflows. This should allow for easy testing of future, unreleased versions of Python. +### Fixed + +- Changed documentation comment style to actual CSS comments in `docs/_static/css/custom.css`. + ## [2024.25] ### Added diff --git a/src/django_twc_package/docs/_static/css/custom.css b/src/django_twc_package/docs/_static/css/custom.css index 83cfc4a..5920340 100644 --- a/src/django_twc_package/docs/_static/css/custom.css +++ b/src/django_twc_package/docs/_static/css/custom.css @@ -1,7 +1,9 @@ -// no idea if this will screw a lot up with the furo theme -// but this does fix the line of badges in the README. only -// one of them has a link which furo makes the vertical-align -// different than just a standard img +/* +no idea if this will screw a lot up with the furo theme +but this does fix the line of badges in the README. only +one of them has a link which furo makes the vertical-align +different than just a standard img +*/ p a.reference img { - vertical-align: inherit; + vertical-align: inherit; }