| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- @use './variables.scss' as *;
- .safety-platform-container {
- display: flex;
- flex-direction: column;
- gap: 10px;
- width: 100%;
- height: 100%;
- &__main,
- &__header,
- &__footer {
- width: 100%;
- background-color: $white-color;
- border-radius: 4px;
- }
- &__header {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- gap: 16px;
- padding: 16px 22px;
- flex-shrink: 0;
- // 面包屑标题
- .breadcrumb-title {
- font-size: 20px;
- font-weight: 600;
- color: rgba($text-color, 0.85);
- }
- }
- &__main {
- flex: 1;
- padding: 20px;
- overflow-y: auto;
- }
- &__footer {
- @include flex-center;
- justify-content: flex-end;
- height: 88px;
- flex-shrink: 0;
- padding: 28px;
- }
- }
|