fix(feedback): tighten error banner spacing

This commit is contained in:
zhangheng
2026-07-22 20:35:06 +08:00
parent 9f1d68cdd3
commit 4b5b91e766
2 changed files with 27 additions and 23 deletions

View File

@@ -9,10 +9,10 @@
<view class="feedback-error-content">
<text class="feedback-error-message">{{errorMessage}}</text>
<button class="feedback-error-close" aria-label="关闭提示" bindtap="dismissError">
<icon type="clear" size="16" color="#8E5B5B" />
<icon type="clear" size="16" color="#9B2C27" />
</button>
</view>
<view class="feedback-error-actions">
<view class="feedback-error-actions {{errorRequestId ? '' : 'feedback-error-actions-single'}}">
<button wx:if="{{errorRequestId}}" class="feedback-error-copy" aria-label="复制问题编号" bindtap="copyRequestId">复制编号</button>
<button class="feedback-error-retry" loading="{{errorRetrying}}" disabled="{{errorRetrying}}" bindtap="retryError">重试</button>
</view>