diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b045e04..5cf3421 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,8 +6,9 @@ variables: pages: script: - - apk add --update --no-cache git go + - apk add --update --no-cache git go nodejs npm - git submodule update --init --recursive + - cd themes/blowfish && npm install && cd ../../ - hugo mod get -u && hugo artifacts: paths: diff --git a/assets/css/compiled/main.css b/assets/css/compiled/main.css index 802817d..d4d2fa3 100644 --- a/assets/css/compiled/main.css +++ b/assets/css/compiled/main.css @@ -1619,10 +1619,6 @@ select { display: flex; } -.table { - display: table; -} - .hidden { display: none; } diff --git a/shell.nix b/shell.nix index 7db09e1..28cc2b2 100644 --- a/shell.nix +++ b/shell.nix @@ -13,6 +13,6 @@ mkShell rec { ]; shellHook = '' - hss='hugo server --noHTTPCache' + alias hss='hugo server --noHTTPCache' ''; }