Update card example

pull/146/head
Cory LaViska 2020-07-24 16:57:54 -04:00
rodzic 96f32122c0
commit dab39c24f9
1 zmienionych plików z 6 dodań i 13 usunięć

Wyświetl plik

@ -59,25 +59,14 @@ Basic cards aren't very exciting, but they can display any content you want them
## Card with Header
Headers can be used to display titles and other card options.
Headers can be used to display titles and more.
```html preview
<sl-card class="card-header">
<div slot="header">
Header Title
<sl-dropdown placement="bottom-end">
<sl-button slot="trigger" type="text">
<sl-icon slot="suffix" name="pencil"></sl-icon>
Edit
</sl-button>
<sl-menu>
<sl-menu-item>Rename</sl-menu-item>
<sl-menu-item>Duplicate</sl-menu-item>
<sl-menu-divider></sl-menu-divider>
<sl-menu-item>Delete</sl-menu-item>
</sl-menu>
</sl-dropdown>
<sl-icon-button name="gear"></sl-icon-button>
</div>
This card has a header. You can put all sorts of things in it!
@ -97,6 +86,10 @@ Headers can be used to display titles and other card options.
.card-header h3 {
margin: 0;
}
.card-header sl-icon-button {
font-size: var(--sl-font-size-medium);
}
</style>
```