grid.wxss 388 B

123456789101112131415161718192021
  1. .tui-grids {
  2. width: 100%;
  3. position: relative;
  4. overflow: hidden;
  5. }
  6. .tui-grids::after {
  7. content: " ";
  8. position: absolute;
  9. left: 0;
  10. top: 0;
  11. width: 100%;
  12. height: 1px;
  13. border-top: 1px solid #eaeef1;
  14. -webkit-transform-origin: 0 0;
  15. transform-origin: 0 0;
  16. -webkit-transform: scaleY(0.5);
  17. transform: scaleY(0.5);
  18. }
  19. .tui-border-top::after {
  20. border-top:0 !important;
  21. }