hypnagaga/src/scss/tokens/layout/flex/_justify-items.scss

24 lines
448 B
SCSS

.justify-items-start {
justify-items: start;
}
.justify-items-end {
justify-items: end;
}
.justify-items-center {
justify-items: center;
}
.justify-items-stretch {
justify-items: stretch;
}
.\!justify-items-start {
justify-items: start !important;
}
.\!justify-items-end {
justify-items: end !important;
}
.\!justify-items-center {
justify-items: center !important;
}
.\!justify-items-stretch {
justify-items: stretch !important;
}