Files
one-pipe-system/src/views/index/style.scss
sexygoat 222e5bb11a Initial commit: One Pipe System
完整的管理系统,包含账户管理、卡片管理、套餐管理、财务管理等功能模块。

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-22 16:35:33 +08:00

48 lines
948 B
SCSS

@use '@/assets/styles/variables' as *;
.layouts {
box-sizing: border-box;
width: 100%;
min-height: 100vh;
overflow: hidden;
background: var(--art-bg-color);
transition: padding 0.3s ease-in-out;
.layout-content {
box-sizing: border-box;
width: calc(100% - 40px);
margin: auto;
// 子页面默认style
:deep(.page-content) {
position: relative;
box-sizing: border-box;
padding: 20px;
overflow: hidden;
background: var(--art-main-bg-color);
border-radius: calc(var(--custom-radius) / 2 + 2px) !important;
}
}
}
@media only screen and (max-width: $device-ipad) {
.layouts {
width: 100%;
min-height: 100vh;
padding-left: 0 !important;
overflow-y: scroll;
.layout-content {
width: calc(100% - 20px);
}
}
}
@media only screen and (max-width: $device-phone) {
.layouts {
.layout-content {
width: calc(100% - 32px);
}
}
}