This commit is contained in:
2026-05-07 02:15:20 +08:00
parent da0a6d0f81
commit ccc46844b6
141 changed files with 2358 additions and 1661 deletions

View File

@@ -0,0 +1,45 @@
@layer utility {
.justify-start {
justify-content: flex-start;
}
.justify-end {
justify-content: flex-end;
}
.justify-end-safe {
justify-content: safe flex-end;
}
.justify-center {
justify-content: center;
}
.justify-center-safe {
justify-content: safe center;
}
.justify-between {
justify-content: space-between;
}
.justify-around {
justify-content: space-around;
}
.justify-evenly {
justify-content: space-evenly;
}
.justify-stretch {
justify-content: stretch;
}
.justify-baseline {
justify-content: baseline;
}
.justify-normal {
justify-content: normal;
}
}