diff --git a/src/App.vue b/src/App.vue index 26b0125..f7bef1b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -2,12 +2,24 @@
- - With supporting text below as a natural lead-in to additional content. -

Income: {{ calculated.yearly.in | currency }}

-

Expenses: {{ calculated.yearly.out | currency }}

-

Profit: {{ calculated.yearly.sum | currency }}

- + + + +

Income: {{ calculated.yearly.in | currency }}

+

Expenses: {{ calculated.yearly.out | currency }}

+

Profit: {{ calculated.yearly.sum | currency }}

+
+ +

Income: {{ calculated.yearly.in/12 | currency }}

+

Expenses: {{ calculated.yearly.out/12 | currency }}

+

Profit: {{ calculated.yearly.sum/12 | currency }}

+
+ +

Income: {{ calculated.yearly.in/365 | currency }}

+

Expenses: {{ calculated.yearly.out/365 | currency }}

+

Profit: {{ calculated.yearly.sum/365 | currency }}

+
+
@@ -94,4 +106,24 @@ .inputs { margin-top: 20px; } +/* width */ +::-webkit-scrollbar { + width: 12px; +} + +/* Track */ +::-webkit-scrollbar-track { + background: var(--gray); +} + +/* Handle */ +::-webkit-scrollbar-thumb { + background: var(--dark); + border-radius: 6px 6px 6px 6px / 12px 12px 12px 12px; +} + +/* Handle on hover */ +::-webkit-scrollbar-thumb:hover { + background: #555; +}