Ohm-Management - Projektarbeit B-ME
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.

_tabs.scss 701B

123456789101112131415161718192021222324252627282930313233
  1. .b-tabs {
  2. .tabs {
  3. margin-bottom: 0;
  4. flex-shrink: 0;
  5. li {
  6. &.is-disabled {
  7. pointer-events: none;
  8. cursor: not-allowed;
  9. opacity: 0.5;
  10. }
  11. }
  12. }
  13. .tab-content {
  14. position: relative;
  15. overflow: visible;
  16. display: flex;
  17. flex-direction: column;
  18. padding: 1rem;
  19. .tab-item {
  20. flex-shrink: 0;
  21. flex-basis: auto;
  22. }
  23. &.is-transitioning {
  24. overflow: hidden;
  25. }
  26. }
  27. &:not(:last-child) {
  28. margin-bottom: 1.5rem;
  29. }
  30. &.is-fullwidth {
  31. width: 100%;
  32. }
  33. }