Files
defgov/packages/css/src/styles/utility/size-insensitive/justify-items.css
2026-06-08 04:19:23 +08:00

30 lines
439 B
CSS

@layer utility {
.justify-items--start {
justify-items: start;
}
.justify-items--end {
justify-items: end;
}
.justify-items--end-safe {
justify-items: safe end;
}
.justify-items--center {
justify-items: center;
}
.justify-items--center-safe {
justify-items: safe center;
}
.justify-items--stretch {
justify-items: stretch;
}
.justify-items--normal {
justify-items: normal;
}
}