modal-user-edit.component.scss 705 B

12345678910111213141516171819202122232425262728293031323334
  1. ion-content{
  2. --background: #f8f8f8;
  3. color: black;
  4. }
  5. ion-header {
  6. background-color: #f8f8f8;
  7. padding: 20px 10px;
  8. color: black;
  9. box-shadow: none;
  10. .header-container {
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-between;
  14. position: relative;
  15. height: 100%;
  16. /* 确保容器占满整个 header 高度 */
  17. padding: 10px;
  18. }
  19. .back-icon {
  20. left: 10px;
  21. /* 图标距左侧的距离 */
  22. cursor: pointer;
  23. }
  24. .header-title {
  25. font-size: 18px;
  26. /* 根据需要调整字体大小 */
  27. font-weight: bold;
  28. /* 可选,加粗字体 */
  29. margin: 0;
  30. }
  31. }