table.less 644 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .mytable_body_div {
  2. display: flex;
  3. justify-content: space-between;
  4. flex-flow: row wrap;
  5. padding: 5px;
  6. // margin-right: 10px;
  7. box-sizing: border-box;
  8. margin: 0 !important;
  9. position: relative;
  10. >div {
  11. display: flex;
  12. justify-content: start;
  13. font-size: 12px;
  14. }
  15. >.red {
  16. background: rgb(255, 233, 227);
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. bottom: 0;
  21. right: 0;
  22. z-index: 20;
  23. }
  24. }
  25. .show {
  26. // background: #fff;
  27. }
  28. .bitRate {
  29. width: 100%;
  30. display: flex;
  31. justify-content: flex-start;
  32. align-items: center;
  33. }