style.scss 544 B

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