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