File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
src/components/card/themes Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,24 @@ import { css } from 'lit';
33import type { Themes } from '../../../theming/types.js' ;
44// Shared Styles
55import { styles as bootstrap } from './shared/content/card.content.bootstrap.css.js' ;
6+ import { styles as indigo } from './shared/content/card.content.indigo.css.js' ;
67
78const light = {
89 bootstrap : css `
910 ${ bootstrap }
1011 ` ,
12+ indigo : css `
13+ ${ indigo }
14+ ` ,
1115} ;
1216
1317const dark = {
1418 bootstrap : css `
1519 ${ bootstrap }
1620 ` ,
21+ indigo : css `
22+ ${ indigo }
23+ ` ,
1724} ;
1825
1926export const all : Themes = { light, dark } ;
Original file line number Diff line number Diff line change 1+ @use ' styles/utilities' as * ;
2+
3+ :host {
4+ ::slotted (igc-avatar ) {
5+ --ig-size : 3 ;
6+ }
7+ }
You can’t perform that action at this time.
0 commit comments