From 4404b650d136382097aba6f471b80cc96c4bd787 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Sat, 21 Jan 2023 20:06:29 +1100 Subject: Adjust coloring and spacing --- src/components/BaseLine.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/components/BaseLine.vue') diff --git a/src/components/BaseLine.vue b/src/components/BaseLine.vue index 53ab6bd..f8227dc 100644 --- a/src/components/BaseLine.vue +++ b/src/components/BaseLine.vue @@ -4,6 +4,7 @@
{{p.label}}
+
@@ -86,7 +87,7 @@ function periodStyles(period: Period){ const labelStyles = computed((): Record => ({ transform: props.vert ? 'rotate(90deg) translate(50%, 0)' : 'none', whiteSpace: 'nowrap', - width: props.vert ? '40px' : 'auto', + width: props.vert ? '40px' : 'auto', // Chose vertical value to roughly match height in horizontal mode padding: props.vert ? '0' : '4px', })); @@ -140,11 +141,10 @@ function spanStyles(stateIdx: number){ return { ...styles, transition: skipTransition.value ? 'none' : 'all 300ms ease-out', - color: 'black', backgroundColor: store.color.alt, opacity: 0.6, borderWidth: '1px', - borderColor: store.color.bg, + borderColor: store.color.bgDark2, }; } -- cgit v1.2.3