Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ plugins:
- jekyll-feed
- jemoji

# Sass configuration to suppress deprecation warnings from theme
sass:
style: compressed
quiet_deps: true
silence_deprecations:
- import
- global-builtin
- color-functions

color_scheme: nhs
mermaid:
# Version of mermaid library
Expand Down
2 changes: 1 addition & 1 deletion docs/_sass/color_schemes/nhs.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "./color_schemes/light";
$color-scheme: light !default;

@font-face {
font-family: "Frutiger W01";
Expand Down
3 changes: 2 additions & 1 deletion scripts/init.mk
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ _install-dependency: # Install asdf dependency - mandatory: name=[listed in the
asdf install ${name} $(or ${version},)

_install-dependencies: # Install all the dependencies listed in .tool-versions
for plugin in $$(grep ^[a-z] .tool-versions | sed 's/[[:space:]].*//'); do
for plugin in $$(grep '^[a-z]' .tool-versions | cut -f1 -d' '); do \
echo "Installing $${plugin}..."; \
make _install-dependency name="$${plugin}"
done

Expand Down