row.less 252 B

123456789101112131415161718192021
  1. /* components/row/row.wxss */
  2. .n-row-class {
  3. background-color: red;
  4. }
  5. .n-row-wrap {
  6. overflow: hidden;
  7. }
  8. .n-row {
  9. display: block;
  10. position: relative;
  11. &::after {
  12. content: '';
  13. display: table;
  14. clear: both;
  15. height: 1rpx;
  16. }
  17. }