75 lines
1.4 KiB
CSS
75 lines
1.4 KiB
CSS
/* 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;
|
|
}
|