@nutui/nutui-react
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
54 lines • 902 B
CSS
/* #ifdef harmony */
/* #endif */
/* #ifndef harmony */
/* #endif */
.nut-row {
display: flex;
flex-direction: row;
width: 100%;
overflow: hidden;
}
.nut-row:after {
display: block;
height: 0;
clear: both;
visibility: hidden;
content: "";
}
.nut-row-flex {
display: flex;
}
.nut-row-flex:after {
display: none;
}
.nut-row-justify-center {
justify-content: center;
}
.nut-row-justify-end {
justify-content: flex-end;
}
.nut-row-justify-space-between {
justify-content: space-between;
align-items: center;
}
.nut-row-justify-space-around {
justify-content: space-around;
}
.nut-row-align-flex-start {
align-items: flex-start;
}
.nut-row-align-center {
align-items: center;
}
.nut-row-align-flex-end {
align-items: flex-end;
}
.nut-row-flex-wrap {
flex-wrap: wrap;
}
.nut-row-flex-nowrap {
flex-wrap: nowrap;
}
.nut-row-flex-reverse {
flex-wrap: wrap-reverse;
}