Files
leaudit-platform-frontend/app/styles/pages/entry-modules.css
T
LiangShiyong dab0835605 feat: 1.修改提示词模板的不用角色的操作权限。
2. 对接数据看板的数据。
3. 添加入口模块管理的页面。
2025-11-21 17:16:07 +08:00

77 lines
1.1 KiB
CSS

/* 入口模块管理页面样式 */
.entry-modules-page {
padding: 24px;
min-height: 100vh;
}
.entry-modules-new-page {
padding: 24px;
min-height: 100vh;
}
/* 页面头部 */
.page-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
}
/* 表单内容 */
.form-content {
max-width: 800px;
}
.form-item {
margin-bottom: 20px;
}
.form-label {
display: block;
font-size: 14px;
font-weight: 500;
color: #374151;
margin-bottom: 8px;
}
.form-actions {
padding-top: 24px;
border-top: 1px solid #e5e7eb;
}
/* Logo预览样式 */
.logo-preview {
display: inline-block;
border: 1px solid #e5e7eb;
border-radius: 4px;
padding: 8px;
background-color: #f9fafb;
}
/* 响应式设计 */
@media (max-width: 768px) {
.entry-modules-page,
.entry-modules-new-page {
padding: 16px;
}
.page-header {
flex-direction: column;
align-items: flex-start;
gap: 16px;
}
.form-content {
max-width: 100%;
}
.form-actions {
flex-direction: column-reverse;
}
.form-actions button {
width: 100%;
}
}