فهرست منبع

80534 fix button margin

Yohei-Shiina 4 سال پیش
والد
کامیت
4e10aeb451
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      packages/app/src/components/SearchPage/DeleteSelectedPageGroup.tsx

+ 2 - 2
packages/app/src/components/SearchPage/DeleteSelectedPageGroup.tsx

@@ -43,13 +43,13 @@ const DeleteSelectedPageGroup:FC<Props> = (props:Props) => {
       />
       <button
         type="button"
-        className="btn text-danger font-weight-light p-0"
+        className="btn text-danger font-weight-light p-0 ml-3"
         onClick={() => {
           if (onClickInvoked == null) { logger.error('onClickInvoked is null') }
           else { onClickInvoked() }
         }}
       >
-        <i className="icon-trash ml-3"></i>
+        <i className="icon-trash"></i>
         {t('search_result.delete_all_selected_page')}
       </button>
     </>