12345678910111213141516171819202122232425262728293031323334353637 |
- .mytable_body_div {
- display: flex;
- justify-content: space-between;
- flex-flow: row wrap;
- padding: 5px;
- // margin-right: 10px;
- box-sizing: border-box;
- margin: 0 !important;
- position: relative;
- >div {
- display: flex;
- justify-content: start;
- font-size: 12px;
- }
- >.red {
- background: rgb(255, 233, 227);
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- z-index: 20;
- }
- }
- .show {
- // background: #fff;
- }
- .bitRate {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
|