Skip to content

Commit ba97a12

Browse files
committed
review feedbacks
1 parent f1ca68f commit ba97a12

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

skore-ui/src/assets/styles/main.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,11 @@
1515
background-color: var(--color-background-branding);
1616
}
1717
}
18+
19+
.simplebar-inverted {
20+
.simplebar-scrollbar {
21+
&::before {
22+
background-color: var(--color-text-tertiary);
23+
}
24+
}
25+
}

skore-ui/src/components/TreeAccordionItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ onMounted(() => {
148148
align-items: center;
149149
justify-content: space-between;
150150
background-color: var(--color-background-primary);
151-
color: var(--color-text-primary);
152151
153152
.label {
154153
display: flex;
@@ -170,6 +169,7 @@ onMounted(() => {
170169
171170
& .text {
172171
border-radius: var(--radius-xs);
172+
color: var(--color-text-primary);
173173
}
174174
175175
&.has-children {

skore-ui/src/views/project/ProjectViewNavigator.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ onBeforeUnmount(() => {
139139
<span>Add a new view</span>
140140
<i class="icon-plus-circle" />
141141
</div>
142-
<Simplebar class="view-list" v-if="views.length > 0">
142+
<Simplebar class="view-list simplebar-inverted" v-if="views.length > 0">
143143
<EditableList
144144
v-model:items="views"
145145
:actions="[

0 commit comments

Comments
 (0)