File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
src/components/dropdown/themes Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 11import { css } from 'lit' ;
22
33import type { Themes } from '../../../theming/types.js' ;
4+ import { styles as fluent } from './shared/header/dropdown-header.fluent.css.js' ;
45// Shared Styles
56import { styles as indigo } from './shared/header/dropdown-header.indigo.css.js' ;
67
78const light = {
89 indigo : css `
910 ${ indigo }
1011 ` ,
12+ fluent : css `
13+ ${ fluent }
14+ ` ,
1115} ;
1216
1317const dark = {
1418 indigo : css `
1519 ${ indigo }
1620 ` ,
21+ fluent : css `
22+ ${ fluent }
23+ ` ,
1724} ;
1825
1926export const all : Themes = { light, dark } ;
Original file line number Diff line number Diff line change @@ -9,6 +9,5 @@ $theme: $bootstrap;
99}
1010
1111[part = ' base' ] {
12- padding : rem (8px ) 0 ;
1312 border : rem (1px ) solid var-get ($theme , ' border-color' );
1413}
Original file line number Diff line number Diff line change 1+ @use ' styles/utilities' as * ;
2+
3+ :host {
4+ @include type-style (' subtitle-2' );
5+ }
You can’t perform that action at this time.
0 commit comments