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

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

Planoetscher Daniel (Student Com20)
committed
@include mx.breakpoint(medium) {
grid-template-columns: repeat(4, 1fr);

Planoetscher Daniel (Student Com20)
committed
}
.add-project {
font-size: 64px;
font-weight: s.$weight-semi-bold;

Planoetscher Daniel (Student Com20)
committed
}
.project {
width: 100%;
padding-bottom: 100%;
&.large {
grid-row: span 2;
height: 100%;

Planoetscher Daniel (Student Com20)
committed
}
}