From caf571e236e257d8605dc81384b68d44b640241c Mon Sep 17 00:00:00 2001 From: castro545 Date: Wed, 19 Apr 2023 15:21:15 -0500 Subject: [PATCH 1/2] Add margin to TreeRow.vue This commit adds a left margin of 3px to the TreeRow component to provide better spacing between the checkbox and the text. Changes Made: - Added margin-left: 3px to the TreeRow component to create better spacing between the checkbox and the text. --- src/lib/components/TreeRow.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/components/TreeRow.vue b/src/lib/components/TreeRow.vue index f457fd6..43f4385 100644 --- a/src/lib/components/TreeRow.vue +++ b/src/lib/components/TreeRow.vue @@ -300,6 +300,7 @@ export default { &-txt { user-select: none; + margin-rigth:3px; } } From a9f30ba87f33e3282402aef511ec21d3b104df8b Mon Sep 17 00:00:00 2001 From: castro545 Date: Wed, 19 Apr 2023 15:28:40 -0500 Subject: [PATCH 2/2] Fix typo in margin property Changed margin-right to margin-left due to a typing error. --- src/lib/components/TreeRow.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/TreeRow.vue b/src/lib/components/TreeRow.vue index 43f4385..9c635b5 100644 --- a/src/lib/components/TreeRow.vue +++ b/src/lib/components/TreeRow.vue @@ -300,7 +300,7 @@ export default { &-txt { user-select: none; - margin-rigth:3px; + margin-left:3px; } }