diff --git a/Makefile b/Makefile index 562c18f..33d445a 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ ruff: venv ruff-format: venv venv/bin/ruff format . djlint: venv ## Format the templates - venv/bin/djlint --ignore=H030,H031,H006 --profile jinja --lint argos/server/templates/*html + venv/bin/djlint --ignore=H006 --profile jinja --lint argos/server/templates/*html pylint: venv ## Runs pylint on the code venv/bin/pylint argos mypy: venv diff --git a/argos/server/static/styles.css b/argos/server/static/styles.css index 769c0a9..6b03c9e 100644 --- a/argos/server/static/styles.css +++ b/argos/server/static/styles.css @@ -4,10 +4,6 @@ code { white-space: pre-wrap; } -body > header, -body > main { - padding: 0 !important; -} #title { margin-bottom: 0; } @@ -53,3 +49,7 @@ label[for="select-status"] { #refresh-delay { max-width: 120px; } +/* Remove chevron on menu */ +#nav-menu summary::after { + background-image: none !important; +} diff --git a/argos/server/templates/base.html b/argos/server/templates/base.html index 1d93963..4964031 100644 --- a/argos/server/templates/base.html +++ b/argos/server/templates/base.html @@ -3,6 +3,10 @@