Skip to content

Commit

Permalink
Fix filter dialog color in light mode (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
huchenlei authored Jul 13, 2024
1 parent 55431d1 commit 15900cd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/NodeSearchFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<Button
icon="pi pi-filter"
severity="secondary"
class="filter-button"
class="_filter-button"
@click="showModal"
/>
<Dialog v-model:visible="visible" class="dialog">
<Dialog v-model:visible="visible" class="_dialog">
<template #header>
<h3>Add node filter condition</h3>
</template>
<div class="dialog-body">
<div class="_dialog-body">
<SelectButton
v-model="selectedFilter"
:options="filters"
Expand Down Expand Up @@ -87,15 +87,15 @@ const showModal = () => {
</script>

<style scoped>
.filter-button {
._filter-button {
z-index: 10;
}
.dialog {
._dialog {
@apply min-w-96;
}
.dialog-body {
._dialog-body {
@apply flex flex-col space-y-2;
}
</style>

0 comments on commit 15900cd

Please sign in to comment.