Skip to main content Sidebar Design tokens Components Layout Style utilities

We’d love to hear from you. Please reach out to us with any questions or inquiries you may have.

You can contact us via e‐mail at placer.coc.reports+contact@gmail.com.

We look forward to hearing from you!

Got it!
Skip to table of contents

The Placer Toolkit alpha has arrived! 🎉
Plenty of changes are coming your way—some big, some breaking, some even nuclear! Beware the changelog…

Bring it on!

    Grid

    Use the pc-grid class to create a responsive grid with even spacing, allowing the number of columns to adjust when space is limited.

    <div class="grid-overview pc-grid">
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
    </div>
    
    <style>
        .grid-overview div:empty {
            min-inline-size: 100%;
            min-block-size: 4rem;
            background-color: var(--pc-color-indigo-60);
            border-radius: var(--pc-border-radius-m);
        }
    </style>
    Code Edit

    Demos#

    Card lists#

    Clusters are great for inline lists and aligning items of varying sizes.

    Edit
    Edit

    Sizing#

    By default, grid items will wrap when the grid’s column size is less than 20ch, but you can set a custom minimum column size using the --min-column-size property.

    Edit

    Gap#

    By default, the gap between grid items uses --pc-spacing-m from your theme. You can add any of the following pc-gap-* classes to an element with pc-grid to specify the gap between items.

    • pc-gap-0
    • pc-gap-xxxs
    • pc-gap-xxs
    • pc-gap-xs
    • pc-gap-s
    • pc-gap-m
    • pc-gap-l
    • pc-gap-xl
    • pc-gap-xxl
    • pc-gap-xxxl
    • pc-gap-xxxxl
    • pc-gap-xxxxxl
    Edit

    Span grid#

    You can add the pc-span-grid class to any grid item to allow it to span all grid columns. With this, the grid item occupies its own grid row.

    Edit