Skip to content

Commit 1ed4f62

Browse files
authored
Feat/1.2.5/UI (#757)
1 parent 2bd4105 commit 1ed4f62

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

ui/src/common/color.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
--an-f5: #f5f5f5;
1515
--an-answer-item-border-top: rgba(0, 0, 0, .125);
1616
--an-answer-inbox-nav-border-top: var(--bs-border-color);
17-
--an-comment-item-border-bottom: var(--bs-colors-gray-200);
17+
--an-comment-item-border-bottom: var(--bs-colors-gray-200, #E9ECEF);
1818
--an-editor-toolbar-hover: #f8f9fa;
1919
--ans-editor-toolbar-focus: #dae0e5;
2020
--an-editor-placeholder-color: #6c757d;

ui/src/components/Comment/index.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -420,12 +420,10 @@ const Comment = ({ objectId, mode, commentId }) => {
420420
onClick={() => {
421421
setPageIndex(pageIndex + 1);
422422
}}>
423-
(
424423
{t('show_more', {
425424
count:
426425
data.count - (pageIndex === 0 ? 3 : pageIndex * pageSize),
427426
})}
428-
)
429427
</Button>
430428
)}
431429
</div>

ui/src/pages/Users/Settings/Account/components/MyLogins/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const Index = () => {
7979
onClick={(e) => deleteLogins(e, item)}>
8080
<span
8181
dangerouslySetInnerHTML={{
82-
__html: base64ToSvg(item.icon),
82+
__html: base64ToSvg(item.icon, 'btnSvg me-2'),
8383
}}
8484
/>
8585
<span>

0 commit comments

Comments
 (0)