Lucien Cartier-Tilet
89d2e1b9b3
All checks were successful
continuous-integration/drone/push Build is passing
57 lines
752 B
Plaintext
57 lines
752 B
Plaintext
each(range(5), {
|
|
.gap-@{value}rem {
|
|
gap: @value * 1rem;
|
|
}
|
|
});
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.flex-inline {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.flex-inline-col {
|
|
.flex-inline();
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-col {
|
|
.flex();
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-row {
|
|
.flex();
|
|
flex-direction: row;
|
|
}
|
|
|
|
@flex-justifications-prefixed: flex-start, flex-end;
|
|
each(@flex-justifications-prefixed, {
|
|
.@{value} {
|
|
.flex();
|
|
justify-content: @value;
|
|
}
|
|
});
|
|
|
|
@flex-justifications: center, space-between, space-around, space-evenly;
|
|
each(@flex-justifications, {
|
|
.flex-@{value} {
|
|
.flex();
|
|
justify-content: @value;
|
|
}
|
|
});
|
|
|
|
.rounded-corners {
|
|
border-radius: 0.3rem;
|
|
}
|
|
|
|
.center {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.card-width {
|
|
max-width: 35rem;
|
|
}
|