diff --git a/.changeset/stale-dancers-design.md b/.changeset/stale-dancers-design.md new file mode 100644 index 000000000..ddf5ab85c --- /dev/null +++ b/.changeset/stale-dancers-design.md @@ -0,0 +1,5 @@ +--- +'@equinor/fusion-wc-person': patch +--- + +Remove avatar border of internal employee diff --git a/packages/person/src/components/avatar/element.css.ts b/packages/person/src/components/avatar/element.css.ts index 1d2ec505f..c1b00d2e8 100644 --- a/packages/person/src/components/avatar/element.css.ts +++ b/packages/person/src/components/avatar/element.css.ts @@ -2,7 +2,8 @@ import { type CSSResult, css } from 'lit'; const style: CSSResult = css` :host(:not([disabled])) fwc-avatar.employee-color { - --fwc-avatar-color: #8c1159; + --fwc-avatar-color: #bebebe; + --fwc-avatar-border-size: 0; } :host(:not([disabled])) fwc-avatar.consultant-color { --fwc-avatar-color: #eb0037; diff --git a/packages/person/src/style.css.ts b/packages/person/src/style.css.ts index 2960d52dc..241abedeb 100644 --- a/packages/person/src/style.css.ts +++ b/packages/person/src/style.css.ts @@ -34,7 +34,7 @@ export const personStyle: CSSResult = css` border-radius: 50%; } .fwc-person-type__employee { - --fwc-avatar-color: #8c1159; + --fwc-avatar-color: #bebebe; --fwc-avatar-ink-color: #fff; } .fwc-person-type__consultant {