天波h5前端应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.scss 774B

12345678910111213141516171819202122232425262728293031323334353637
  1. .table-container {
  2. table {
  3. position: relative;
  4. width: 100%;
  5. border-collapse: collapse;
  6. border-spacing: 0;
  7. empty-cells: show;
  8. border: .5px solid #e9e9e9;
  9. overflow: scroll;
  10. }
  11. table th {
  12. background: #f7f7f7;
  13. color: #5c6b77;
  14. font-weight: 600;
  15. white-space: nowrap;
  16. }
  17. table td,
  18. table th {
  19. border: .5px solid #e9e9e9;
  20. text-align: left;
  21. @media screen and (max-width: 1920px) and (min-width: 550px){
  22. padding: 4px;
  23. }
  24. @media screen and (max-width: 550px) and (min-width: 200px){
  25. font-size: 16px;
  26. padding: 8px;
  27. }
  28. }
  29. tbody {
  30. height: 50px;
  31. overflow: scroll;
  32. }
  33. }