Skip to content

Commit 858eb22

Browse files
committed
reflect the card type so default is outlined
1 parent d2863a5 commit 858eb22

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

card/card.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { html, LitElement, css } from 'lit'
55
*/
66
export class Card extends LitElement {
77
static properties = {
8-
type: { type: String },
8+
type: { type: String, reflect: true },
99
}
1010

1111
constructor() {
@@ -25,7 +25,7 @@ export class Card extends LitElement {
2525
static styles = [
2626
css`
2727
:host {
28-
border-radius: var(--_container-shape);
28+
border-radius: var(--_container-shape, 12px);
2929
box-sizing: border-box;
3030
display: flex;
3131
flex-direction: column;

0 commit comments

Comments
 (0)