Skip to content

Commit

Permalink
fix dark-mode support for section header when used in data-menu
Browse files Browse the repository at this point in the history
  • Loading branch information
kecnry committed Feb 23, 2024
1 parent 808b897 commit b2a1750
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jdaviz/components/plugin_section_header.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div :class="active ? 'strike strike-active text--secondary': 'strike text--secondary'">
<div :class="active ? 'strike strike-active': 'strike'">
<span>
<slot></slot>
</span>
Expand Down Expand Up @@ -37,7 +37,7 @@ module.exports = {
top: 50%;
width: 9999px;
height: 1px;
background: rgba(0, 0, 0, 0.15);
background: gray;
}
.strike-active > span:before,
Expand Down

0 comments on commit b2a1750

Please sign in to comment.