Add border radius to the graph divs to improve style (#120)

This commit is contained in:
Lukas Tenbrink
2025-08-20 15:34:46 +02:00
committed by GitHub
parent f4ceaf0c71
commit caf532112e
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
<div style="display: flex; flex-direction: column;">
<input style="margin-right: 0" type="text" id="filter" name="filter" placeholder="Filter..." oninput="updateChart()"/>
<div id="chart" style="min-height: 365px;">
<div id="chart" style="min-height: 365px; border-radius: 6px; overflow: hidden;">
</div>
</div>

View File

@@ -23,7 +23,7 @@
<div style="align-self: center;">
<a href="/graph/{{ .id }}">{{ .title }}</a>
</div>
<div id="{{ .id }}">
<div style="border-radius: 6px; overflow: hidden;" id="{{ .id }}">
</div>
</div>
{{ end }}