Skip to content
Snippets Groups Projects
project-grid.scss 696 B
Newer Older

@use 'styles/mixins.scss' as mx;
@use 'styles/settings.scss' as s;
@use 'styles/functions.scss' as fn;

.project-grid {
    display: grid;
    grid-auto-rows: max-content;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);

    @include mx.breakpoint(medium) {
        grid-template-columns: repeat(4, 1fr);
    }

    .add-project {
        font-size: 64px;
        font-weight: s.$weight-semi-bold;
        &.large {
            grid-row: span 2;
            height: 100%;