Skip to content

Commit

Permalink
fix(nav-drawer): fix indigo theme
Browse files Browse the repository at this point in the history
  • Loading branch information
desig9stein committed May 21, 2024
1 parent 26800dd commit 1bb2fa9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/nav-drawer/themes/container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { styles as shared } from './light/container/nav-drawer.shared.css.js';
// Shared Styles
import { styles as bootstrap } from './shared/container/nav-drawer.bootstrap.css.js';
import { styles as fluent } from './shared/container/nav-drawer.fluent.css.js';
import { styles as indigo } from './shared/container/nav-drawer.indigo.css.js';
import { styles as material } from './shared/container/nav-drawer.material.css.js';

const light = {
Expand All @@ -31,7 +32,7 @@ const light = {
${fluent} ${fluentLight}
`,
indigo: css`
${indigoLight}
${indigo} ${indigoLight}
`,
};

Expand All @@ -49,7 +50,7 @@ const dark = {
${fluent} ${fluentDark}
`,
indigo: css`
${indigoDark}
${indigo} ${indigoDark}
`,
};

Expand Down

0 comments on commit 1bb2fa9

Please sign in to comment.