mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
0ef37c7540
Closes https://github.com/paritytech/polkadot-sdk/issues/2977 The issue appears to stem from the `aquamarine` crate failing to render diagrams in re-exported crates. e.g. as raised [here](https://github.com/paritytech/polkadot-sdk/issues/2977), diagrams would render at `frame_support::traits::Hooks` but not the re-exported doc `frame::traits::Hooks`, even if I added `aquamarine` as a `frame` crate dependency. To resolve this, I followed advice in https://github.com/mersinvald/aquamarine/issues/20 to instead render mermaid diagrams directly using JS by adding an `after-content.js`. --- Also fixes compile warnings, enables `--all-features` and disallows future warnings in CI. --------- Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: Bastian Köcher <git@kchr.de>
18 lines
263 B
CSS
18 lines
263 B
CSS
:root {
|
|
--polkadot-pink: #E6007A;
|
|
--polkadot-green: #56F39A;
|
|
--polkadot-lime: #D3FF33;
|
|
--polkadot-cyan: #00B2FF;
|
|
--polkadot-purple: #552BBF;
|
|
}
|
|
|
|
body.sdk-docs {
|
|
nav.sidebar>div.sidebar-crate>a>img {
|
|
width: 190px;
|
|
}
|
|
|
|
nav.sidebar {
|
|
flex: 0 0 250px;
|
|
}
|
|
}
|