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
4 changes: 2 additions & 2 deletions .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Upstream-Name: cardano.nix
Upstream-Contact: <legal@mlabs.city>
Source: https://github.com/mlabs-haskell/cardano.nix

Files: *.lock *.nix *.md docs/mkdocs.yml .envrc .gitignore
Files: *.lock *.nix *.md *.css docs/mkdocs.yml .envrc .gitignore
Copyright: © 2023 MLabs LTD <legal@mlabs.city>
License: Apache-2.0

Files: docs/assets/favicon.png docs/assets/logo.svg
Copyright: © 2023 MLabs LTD <legal@mlabs.city>
License: LicenseRef-MLabs
License: LicenseRef-MLabs
2 changes: 1 addition & 1 deletion docs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
internal = false;
visible = true;
description = ''
${lib.traceVal opt.description}
${opt.description}
${lib.optionalString opt.internal "*Internal:* true"}
'';
};
Expand Down
5 changes: 4 additions & 1 deletion docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ site_description: Nix packages and NixOS modules for the Cardano ecosystem
site_url: https://github.com/mlabs-haskell/cardano.nix

repo_url: https://github.com/mlabs-haskell/cardano.nix
edit_uri: edit/main/docs
edit_uri: edit/master/docs

theme:
name: material
Expand Down Expand Up @@ -77,4 +77,7 @@ extra:
name: Cardano.nix on Github
generator: false # hide the line "Made with Material for MkDocs"

extra_css:
- stylesheets/extra.css

copyright: Copyright &copy; MLabs Ltd
4 changes: 4 additions & 0 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* Prevent right navigation bar with option from truncating */
nav.md-nav--secondary a.md-nav__link {
word-break: break-all;
}