diff --git a/public/vcd.css b/public/vcd.css index af18a6c..941f614 100644 --- a/public/vcd.css +++ b/public/vcd.css @@ -21,7 +21,7 @@ body::-webkit-scrollbar { } ::-webkit-scrollbar { - width: 15px; + width: 12px; } ::-webkit-scrollbar-track { @@ -29,7 +29,17 @@ body::-webkit-scrollbar { } ::-webkit-scrollbar-thumb { - background: #3D4450; + background: var(--scrollbar-background); + border-radius: .3em; +} + +::-webkit-scrollbar-thumb:hover { + background: var(--scrollbar-hover); + border-radius: .3em; +} + +::-webkit-scrollbar-thumb:active { + background: var(--scrollbar-active); border-radius: .3em; } diff --git a/src/components/sidebar.vue b/src/components/sidebar.vue index 5c320e4..0b85e8c 100644 --- a/src/components/sidebar.vue +++ b/src/components/sidebar.vue @@ -55,7 +55,7 @@ export default { margin: 10px; padding: 10px 25px; background-color: var(--color-deepPurple); - border-radius: 0 0 1.5em 1.5em; + border-radius: 0 0 .8em .8em; color: var(--sidebar-item-text); cursor: pointer; display: flex; diff --git a/src/components/treeview/index.vue b/src/components/treeview/index.vue index 8ed46c0..a0f0954 100644 --- a/src/components/treeview/index.vue +++ b/src/components/treeview/index.vue @@ -7,10 +7,13 @@
{{ t('module') }}

- +
+ +
+
@@ -52,15 +55,16 @@ export default {