Shun Miyazawa 4 년 전
부모
커밋
89334a94d0
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/client/js/components/Admin/Common/AdminUpdateButtonRow.jsx

+ 5 - 1
src/client/js/components/Admin/Common/AdminUpdateButtonRow.jsx

@@ -6,7 +6,11 @@ const AdminUpdateButtonRow = (props) => {
   const { t } = props;
   const { t } = props;
 
 
   return (
   return (
-    <button type="button" className="btn btn-primary" onClick={props.onClick} disabled={props.disabled}>{ t('Update') }</button>
+    <div className="row my-3">
+      <div className="mx-auto">
+        <button type="button" className="btn btn-primary" onClick={props.onClick} disabled={props.disabled}>{ t('Update') }</button>
+      </div>
+    </div>
   );
   );
 };
 };