index.scss 336 B

1234567891011121314151617181920
  1. .nut-theme-dark {
  2. .nut-tab-pane {
  3. background: $dark-background2;
  4. }
  5. }
  6. .nut-tab-pane {
  7. width: 100%;
  8. flex-shrink: 0;
  9. display: block;
  10. background-color: #fff;
  11. padding: 24px 20px;
  12. box-sizing: border-box;
  13. overflow: auto;
  14. height: 100%;
  15. word-break: break-all;
  16. &.inactive {
  17. overflow: visible;
  18. height: 0;
  19. }
  20. }