This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

74
node_modules/ng-zorro-antd/flex/style/index.css generated vendored Normal file
View File

@@ -0,0 +1,74 @@
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
.ant-flex {
display: flex;
}
.ant-flex-vertical {
flex-direction: column;
}
.ant-flex-justify-flex-start {
justify-content: flex-start;
}
.ant-flex-justify-center {
justify-content: center;
}
.ant-flex-justify-flex-end {
justify-content: flex-end;
}
.ant-flex-justify-space-between {
justify-content: space-between;
}
.ant-flex-justify-space-around {
justify-content: space-around;
}
.ant-flex-justify-space-evenly {
justify-content: space-evenly;
}
.ant-flex-justify-start {
justify-content: start;
}
.ant-flex-justify-end {
justify-content: end;
}
.ant-flex-justify-right {
justify-content: right;
}
.ant-flex-justify-left {
justify-content: left;
}
.ant-flex-justify-stretch {
justify-content: stretch;
}
.ant-flex-justify-normal {
justify-content: normal;
}
.ant-flex-align-flex-start {
align-items: flex-start;
}
.ant-flex-align-center {
align-items: center;
}
.ant-flex-align-flex-end {
align-items: flex-end;
}
.ant-flex-align-start {
align-items: start;
}
.ant-flex-align-end {
align-items: end;
}
.ant-flex-align-stretch {
align-items: stretch;
}
.ant-flex-align-normal {
align-items: normal;
}
.ant-flex-wrap-wrap {
flex-wrap: wrap;
}
.ant-flex-wrap-nowrap {
flex-wrap: nowrap;
}
.ant-flex-wrap-wrap-reverse {
flex-wrap: wrap-reverse;
}