page-details-layout.scss 767 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @use './variables.scss' as *;
  2. .safety-platform-container {
  3. display: flex;
  4. flex-direction: column;
  5. gap: 10px;
  6. width: 100%;
  7. height: 100%;
  8. &__main,
  9. &__header,
  10. &__footer {
  11. width: 100%;
  12. background-color: $white-color;
  13. border-radius: 4px;
  14. }
  15. &__header {
  16. display: flex;
  17. flex-direction: column;
  18. justify-content: space-between;
  19. gap: 16px;
  20. padding: 16px 22px;
  21. flex-shrink: 0;
  22. // 面包屑标题
  23. .breadcrumb-title {
  24. font-size: 20px;
  25. font-weight: 600;
  26. color: rgba($text-color, 0.85);
  27. }
  28. }
  29. &__main {
  30. flex: 1;
  31. padding: 20px;
  32. overflow-y: auto;
  33. }
  34. &__footer {
  35. @include flex-center;
  36. justify-content: flex-end;
  37. height: 88px;
  38. flex-shrink: 0;
  39. padding: 28px;
  40. }
  41. }