Sha256: d2734f33dfc908872691f9c8471c58e7f34e7f6a50fd57b735f8e5b1e9c7f72f

Contents?: true

Size: 818 Bytes

Versions: 2

Compression:

Stored size: 818 Bytes

Contents

.bw-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: $spacing-unit;
    column-gap: $spacing-unit;

    @include on-tablet {
        grid-template-columns: repeat(2, 1fr);
    }
    @include on-vert-tablet {
        grid-template-columns: repeat(1, 1fr);
    }

    .bw-post {
        display: grid;
        grid-template-rows: auto 1fr auto;

        .bw-post-links {
            display: block;
            text-align: right;

            @include on-mobile {
                display: flex;
                flex-direction: row-reverse;
            }

            a {
                flex: 0;
                text-align: center;
                @include on-mobile {
                    flex: 1;
                }
            }
        }
    }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-theme-backwhite-2.1.1 _sass/jekyll-theme-backwhite/_post-index.scss
jekyll-theme-backwhite-2.1.0 _sass/jekyll-theme-backwhite/_post-index.scss