Files
cpms_operation_platform/src/layouts/BasicLayout.module.less
T

138 lines
2.1 KiB
Plaintext
Raw Normal View History

2026-07-28 10:54:36 +08:00
.basicLayoutMain {
2026-07-14 10:31:17 +08:00
min-height: 100vh;
height: 100vh;
2026-07-14 10:31:17 +08:00
2026-07-28 10:54:36 +08:00
.logo {
height: 56px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
color: #1a1a1a;
background: #fff;
}
2026-07-14 10:31:17 +08:00
2026-07-28 10:54:36 +08:00
.logoText {
font-size: 16px;
font-weight: 600;
white-space: nowrap;
}
2026-07-14 10:31:17 +08:00
2026-07-28 10:54:36 +08:00
.trigger {
font-size: 18px;
cursor: pointer;
transition: color 0.3s;
padding: 0 12px;
display: inline-flex;
align-items: center;
2026-07-14 10:31:17 +08:00
2026-07-28 10:54:36 +08:00
&:hover {
color: #1677ff;
}
2026-07-14 10:31:17 +08:00
}
2026-07-28 10:54:36 +08:00
.breadcrumb {
flex: 1;
margin-left: 8px;
font-size: 14px;
2026-07-28 10:54:36 +08:00
:global {
.ant-breadcrumb-link,
.ant-breadcrumb-separator,
2026-07-28 10:54:36 +08:00
.ant-breadcrumb-item a {
color: rgba(0, 0, 0, 0.65);
}
.ant-breadcrumb-item:last-child {
.ant-breadcrumb-link,
.ant-breadcrumb-separator,
a {
color: rgba(0, 0, 0, 0.88);
font-weight: 500;
cursor: default;
}
}
}
}
2026-07-28 10:54:36 +08:00
.headerRight {
margin-left: auto;
display: flex;
gap: 10px;
align-items: center;
}
2026-07-28 10:54:36 +08:00
.userPhone {
font-size: 14px;
color: rgba(0, 0, 0, 0.65);
}
2026-07-28 10:54:36 +08:00
.logoutIcon {
width: 18px;
height: 18px;
opacity: 0.45;
cursor: pointer;
transition: opacity 0.3s;
2026-07-28 10:54:36 +08:00
&:hover {
opacity: 1;
}
}
2026-07-28 10:54:36 +08:00
.menuItem {
display: inline-flex;
align-items: center;
gap: 8px;
2026-07-28 10:54:36 +08:00
:global(.anticon) {
font-size: 14px;
}
}
2026-07-28 10:54:36 +08:00
.menuItemDanger {
color: #ff4d4f;
}
2026-07-28 10:54:36 +08:00
.content {
margin: 16px;
border-radius: 8px;
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
overflow: hidden;
}
2026-07-14 10:31:17 +08:00
2026-07-28 15:24:42 +08:00
.pageView {
position: relative;
flex: 1;
min-height: 0;
overflow: hidden;
display: flex;
flex-direction: column;
}
2026-07-28 10:54:36 +08:00
.main {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
}
2026-07-27 16:29:12 +08:00
2026-07-28 10:54:36 +08:00
.headerRow {
padding: 0 16px;
width: 100%;
height: 48px;
display: flex;
align-items: center;
}
2026-07-27 16:29:12 +08:00
2026-07-28 10:54:36 +08:00
.pageTabs {
width: 100%;
padding: 4px 16px 0 16px;
height: 42px;
background: #fff;
border-top: 1px solid #f0f0f0;
}
2026-07-27 16:29:12 +08:00
}