Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mermaid.scss « mermaid « lib « assets - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 773fac4008596791f6a486012db7e0f5fb96d739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.page .mermaid {
  width: 100%;
  margin: 3% auto;
  text-align: center;

  & > svg {
    max-width: 100%;
  }

  @import "themes/neutral/index";

  [theme=dark] & {
    @import "themes/dark/index";
  }

  div.mermaidTooltip {
    z-index: 50;
  }
}