Adds new expense report, with ability to break down by vendor

This commit is contained in:
2024-04-19 21:48:28 -07:00
parent 706924c21c
commit 22e92c819b
12 changed files with 141 additions and 45 deletions

View File

@@ -242,11 +242,26 @@
}
/* Use this selector to override the line style on a given series */
.ct-series-a .ct-bar {
/* Set the colour of this series line */
stroke: #79b52e;
fill: #79b52e;
/* Control the thikness of your lines */
stroke-width: 20px;
}
.ct-series-b .ct-bar {
stroke: #ff0303;
fill: #ff0303;
}
.ct-series-c .ct-bar {
stroke: #009cea;
fill: #009cea;
}
.ct-series-d .ct-bar {
stroke: #f48017;
fill: #f48017;
}
.ct-series-e .ct-bar {
stroke: #9c27b0;
fill: #9c27b0;
}

File diff suppressed because one or more lines are too long