chapter-generator.page.scss 1010 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* chapter-generator.page.scss */
  2. ion-menu {
  3. --width: 80%;
  4. }
  5. ion-list {
  6. margin-top: 16px;
  7. }
  8. ion-content {
  9. overflow: auto; // 确保内容可以滚动,不会裁剪 FAB
  10. }
  11. .overlay {
  12. position: fixed;
  13. top: 0;
  14. left: 0;
  15. width: calc(100% - 200px);
  16. /* 200px 是侧边栏的宽度 */
  17. height: 100%;
  18. background-color: rgba(0, 0, 0, 0.5);
  19. /* 半透明黑色背景 */
  20. z-index: 999;
  21. /* 确保遮罩层在主要内容之上 */
  22. margin-left: 200px;
  23. /* 与侧边栏对齐 */
  24. }
  25. .content-container {
  26. display: flex;
  27. width: 100%;
  28. height: 100%;
  29. position: relative;
  30. z-index: 100;
  31. /* 设置一个比侧边栏低的 z-index */
  32. }
  33. .chapter-edit-container {
  34. flex: 1;
  35. padding: 16px;
  36. position: relative;
  37. z-index: 100;
  38. /* 设置与 AI 功能按钮相同的 z-index */
  39. }
  40. ion-fab {
  41. z-index: 1000;
  42. margin-left: 16px; // 根据需要调整
  43. margin-bottom: 40px; // 根据需要调整
  44. /* 确保悬浮球在最上层 */
  45. }