| 1234567891011121314151617181920 |
- // 导入全局样式变量
- @import '@/styles/variables.scss';';
- // 其他应用列表页面样式
- // 说明:使用全局样式类,本文件只保留必要的页面特定样式
- .other-app-list {
- // 页面容器 - 使用全局 .page-container 的 padding
- padding: $spacing-4 $spacing-6;
- min-height: calc(100vh - $header-height);
- background: $bg-primary;
- }
- // 空状态提示 - 页面特定样式
- .empty-state {
- text-align: center;
- padding: $spacing-10 $spacing-5;
- color: $text-hint;
- font-size: $font-lg;
- }
|