fix: better previous on overview

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-10-16 14:34:32 +02:00
parent 56ad8854eb
commit 1187bcac0a
2 changed files with 14 additions and 12 deletions

View File

@@ -36,6 +36,15 @@ export const BarWithBorder = (options: Options) => {
};
};
export const BarShapeGrey = BarWithBorder({
borderHeight: 2,
border: 'rgba(100, 100, 100, 1)',
fill: 'rgba(100, 100, 100, 0.3)',
active: {
border: 'rgba(100, 100, 100, 1)',
fill: 'rgba(100, 100, 100, 0.4)',
},
});
export const BarShapeBlue = BarWithBorder({
borderHeight: 2,
border: 'rgba(59, 121, 255, 1)',