Skip to content

Commit 9474dfc

Browse files
authored
fix(card): indigo theme avatar size (#1795)
1 parent 7c83039 commit 9474dfc

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/components/card/themes/content.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,24 @@ import { css } from 'lit';
33
import type { Themes } from '../../../theming/types.js';
44
// Shared Styles
55
import { 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

78
const light = {
89
bootstrap: css`
910
${bootstrap}
1011
`,
12+
indigo: css`
13+
${indigo}
14+
`,
1115
};
1216

1317
const dark = {
1418
bootstrap: css`
1519
${bootstrap}
1620
`,
21+
indigo: css`
22+
${indigo}
23+
`,
1724
};
1825

1926
export const all: Themes = { light, dark };
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@use 'styles/utilities' as *;
2+
3+
:host {
4+
::slotted(igc-avatar) {
5+
--ig-size: 3;
6+
}
7+
}

0 commit comments

Comments
 (0)