anki/ts/graphs/CumulativeOverlay.svelte
2021-03-21 19:50:35 +10:00

16 lines
436 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<style lang="scss">
.cumulative-overlay {
pointer-events: none;
fill: var(--area-fill);
fill-opacity: var(--area-fill-opacity);
stroke: var(--area-stroke);
stroke-opacity: var(--area-stroke-opacity);
}
</style>
<path class="cumulative-overlay" />