# give/4.16.8.1/src/Views/Components/Card/style.module.scss

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 28 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Views/Components/Card/style.module.scss
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Views/Components/Card/style.module.scss
- Modified: 2021-11-23T23:55:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Views/Components/Card/style.module.scss#L10-L20`.

```scss
.card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(68, 68, 68, 0.05), 0 3px 6px rgba(68, 68, 68, 0.05);
    display: flex;
    flex-direction: column;

    > .title {
        font-weight: 900;
        padding: 16px;
        font-size: 15px;
    }

    > .content {
        padding: 0;
        flex: 1;
        display: flex;
        position: relative;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .card {
        grid-column: span 12 !important;
    }
}

```
