Skip to main content

Card

Wrapper for all card elements, one of the most common component in a UI.

Mushrooms

Edible mushrooms

Edible mushrooms include many fungal species that are either harvested wild or cultivated.
<Card>
<CardMedia image='https://upload.wikimedia.org/wikipedia/commons/9/9a/Chanterelle_Cantharellus_cibarius.jpg' />
<CardHeader
title="Mushrooms"
subtitle="Edible mushrooms"
/>
<CardContent>
{/* insert content */}
</CardContent>
<CardActions>
<Button color="grey">Back</Button>
<Buttons>
<Button color="error">Cancel</Button>
<Button color="primary">Save</Button>
</Buttons>
</CardActions>
</Card>

Props

Size

XSmall

Small

Medium

Large

XLarge

<Card size="xs">{/* insert content */}</Card>
<Card size="sm">{/* insert content */}</Card>
<Card>{/* insert content */}</Card>
<Card size="lg">{/* insert content */}</Card>
<Card size="xl">{/* insert content */}</Card>

Fill

Change the baackground and text color of the card.

Classes for pallote-css

If you are using pallote-css, use the fill modifier.

Default

Paper

Primary

Secondary

Success

Info

Warning

Error

<Card fill="default">{/* insert content */}</Card>
<Card>{/* insert content */}</Card>
<Card fill="primary">{/* insert content */}</Card>
<Card fill="secondary">{/* insert content */}</Card>
<Card fill="success">{/* insert content */}</Card>
<Card fill="info">{/* insert content */}</Card>
<Card fill="warning">{/* insert content */}</Card>
<Card fill="error">{/* insert content */}</Card>

Direction

Portrait

Landscape

<Card>{/* insert content */}</Card>
<Card direction="landscape">{/* insert content */}</Card>

Align

Left

Center

Right

<Card>{/* insert content */}</Card>
<Card align="center">{/* insert content */}</Card>
<Card align="right">{/* insert content */}</Card>

HasShadow

HasShadow

<Card hasShadow>{/* insert content */}</Card>

Transparent

Remove background color and padding around the edges.

Transparent

<Card transparent>{/* insert content */}</Card>