We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 171d835 commit e90b0ebCopy full SHA for e90b0eb
1 file changed
scripts/visualize_graph.py
@@ -45,20 +45,21 @@ def generate_html(mermaid_code):
45
.ability-box {{ background-color: #2f4f4f; border: 1px solid #00ced1; }}
46
47
#graph-container {{
48
- width: 100%;
+ width: 100vw;
49
+ height: calc(100vh - 60px);
50
overflow: auto;
51
padding: 40px;
52
box-sizing: border-box;
53
+ background-color: #0d1117;
54
}}
55
56
.mermaid {{
- background: #0d1117;
- display: block;
57
- margin: 0 auto;
+ margin: 0;
58
+ display: inline-block;
59
60
</style>
61
</head>
- <body>
62
+ <body style="overflow: hidden;">
63
<div class="header">
64
<div>
65
<h2 style="margin:0; font-size: 1.2em;">Mythril Content Graph</h2>
0 commit comments