bootstrap-table-fixed-columns.scss 344 B

12345678910111213141516171819202122232425
  1. .fixed-columns,
  2. .fixed-columns-right {
  3. position: absolute;
  4. top: 0;
  5. height: 100%;
  6. background-color: #fff;
  7. box-sizing: border-box;
  8. z-index: 1;
  9. }
  10. .fixed-columns {
  11. left: 0;
  12. .fixed-table-body {
  13. overflow: hidden!important;
  14. }
  15. }
  16. .fixed-columns-right {
  17. right: 0;
  18. .fixed-table-body {
  19. overflow-x: hidden!important;
  20. }
  21. }