hypnagaga/src/scss/layout/flex/_justify-items.scss
2023-07-09 18:28:43 +01:00

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;
}