index.less 634 B

123456789101112131415161718192021222324252627282930313233
  1. .cip-page-layout-handle{
  2. height: 100%;
  3. display: flex;
  4. overflow: hidden;
  5. flex-direction: column;
  6. &__breadcrumb{
  7. flex-shrink: 0;
  8. width: 100%;
  9. height: 42px;
  10. background: #fff;
  11. display: flex;
  12. align-items: center;
  13. }
  14. &__main{
  15. padding: 20px;
  16. overflow: auto;
  17. flex-grow: 2;
  18. height: 0;
  19. box-sizing: border-box;
  20. }
  21. &__handler{
  22. flex-shrink: 0;
  23. width: 100%;
  24. height: 64px;
  25. background: #fff;
  26. display: flex;
  27. align-items: center;
  28. justify-content: flex-end;
  29. padding: 0 24px;
  30. box-sizing: border-box;
  31. box-shadow: 0px -2px 12px 0px rgba(0,0,0,0.06);
  32. }
  33. }