[READ-ONLY] Mirror of https://github.com/probablykasper/starchart. GitHub star history graph starchart.kasper.space
chart github github-api github-star graph history star star-history stargazers stars
0

Configure Feed

Select the types of activity you want to include in your feed.

Add watermark

Kasper (Apr 24, 2025, 6:55 AM +0200) 26a22d7f 7b724208

+7
+7
src/routes/+page.svelte
··· 132 132 <ChartComponent bind:chart /> 133 133 {/if} 134 134 <div class="chart" bind:clientWidth={width}> 135 + <div class="watermark">starchart.kasper.space</div> 135 136 <div bind:this={container} class:hidden={!$chart || $chart.lines.length === 0}></div> 136 137 {#if chart && $chart && $chart.lines.length > 0} 137 138 <Tooltip {chart} /> ··· 201 202 .chart 202 203 width: 100% 203 204 position: relative // for tooltip 205 + .watermark 206 + position: absolute 207 + color: hsla(0, 0%, 100%, 0.1) 208 + top: 1.5rem 209 + left: 1.5rem 210 + z-index: 10 204 211 .hidden 205 212 display: none 206 213 .bottom-bar