From 8ec7bd0925d0b424b5222b1dc13bf66e27fff4b5 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 13 Oct 2019 22:00:24 +0200 Subject: [PATCH] style(Account Tag List): Add a float left to better manage a category --- src/components/TagList.vue | 74 +++++++++++++++++--------------------- 1 file changed, 32 insertions(+), 42 deletions(-) diff --git a/src/components/TagList.vue b/src/components/TagList.vue index fc91092..c35c685 100644 --- a/src/components/TagList.vue +++ b/src/components/TagList.vue @@ -2,19 +2,12 @@
- + - +
{{ slice.label }} - {{ Math.round(slice.percent * 100) }}% - {{ Math.round(slice.percent * 100) }}%
@@ -34,48 +27,42 @@
-
-
- -
-

- {{ - $tc('account.total', category.transactions.length, { - count: category.transactions.length - }) - }} -

- +
+ +
+

+ {{ + $tc('account.total', category.transactions.length, { + count: category.transactions.length + }) + }} +

+ +
@@ -209,4 +196,7 @@ export default class TagList extends Vue { .percent-label { text-align: right; } +.category-list-container { + float: left; +}