tab2.page.scss 843 B

123456789101112131415161718192021222324252627282930313233343536
  1. ion-content {
  2. background: transparent !important; /* 确保ion-content透明 */
  3. color: var(--ion-text-color); /* 保持文本颜色 */
  4. }
  5. ion-card {
  6. background: transparent ; /* 确保卡片背景透明 */
  7. }
  8. ion-item {
  9. background: transparent ; /* 确保列表项背景透明 */
  10. }
  11. ion-avatar {
  12. width: 50px ; /* 或者你需要的任何尺寸 */
  13. height: 50px ; /* 保持宽高一致,避免变形 */
  14. }
  15. ion-avatar img {
  16. width: 100% ; /* 让图片填满avatar */
  17. height: auto ; /* 保持图片比例 */
  18. }
  19. ion-searchbar {
  20. padding: 10px ; /* 内边距 */
  21. border-radius: 4px ; /* 圆角 */
  22. font-size: 16px ; /* 字体大小 */
  23. }
  24. ion-button {
  25. font-size: 15px ; /* 增大字体大小 */
  26. margin-top: 8px ; /* 上间距,仅在需要时添加 */
  27. text-transform: none ; /* 按钮文字不变形 */
  28. height: 35px ;
  29. }