24 lines
448 B
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;
|
|
}
|