Shun Miyazawa 2 лет назад
Родитель
Сommit
464f0d4538

+ 1 - 2
apps/app/src/components/Admin/AuditLog/AuditLogDisableMode.tsx

@@ -11,8 +11,7 @@ export const AuditLogDisableMode: FC = () => {
         <div className="row justify-content-md-center">
         <div className="row justify-content-md-center">
           <div className="col-md-6 mt-5">
           <div className="col-md-6 mt-5">
             <div className="text-center">
             <div className="text-center">
-              {/* error icon large */}
-              <h1><span className="material-symbols-outlined">error</span></h1>
+              <h1><span className="material-symbols-outlined fs-1">error</span></h1>
               <h1 className="text-center">{t('audit_log_management.audit_log')}</h1>
               <h1 className="text-center">{t('audit_log_management.audit_log')}</h1>
               <h3
               <h3
                 // eslint-disable-next-line react/no-danger
                 // eslint-disable-next-line react/no-danger

+ 4 - 2
apps/app/src/components/Admin/AuditLog/AuditLogSettings.tsx

@@ -24,8 +24,10 @@ export const AuditLogSettings: FC = () => {
         {t('admin:audit_log_management.activity_expiration_date_explain')}
         {t('admin:audit_log_management.activity_expiration_date_explain')}
       </p>
       </p>
       <p className="alert alert-warning col-6">
       <p className="alert alert-warning col-6">
-        <span className="material-symbols-outlined">error</span>
-        <b>FIXED</b><br />
+        <div className="d-flex">
+          <span className="material-symbols-outlined me-1">error</span>
+          <b>FIXED</b>
+        </div>
         <b
         <b
           // eslint-disable-next-line react/no-danger
           // eslint-disable-next-line react/no-danger
           dangerouslySetInnerHTML={{
           dangerouslySetInnerHTML={{

+ 3 - 3
apps/app/src/components/Admin/AuditLogManagement.tsx

@@ -149,11 +149,11 @@ export const AuditLogManagement: FC = () => {
 
 
   return (
   return (
     <div data-testid="admin-auditlog">
     <div data-testid="admin-auditlog">
-      <button type="button" className="btn btn-outline-secondary mb-4" onClick={() => setIsSettingPage(!isSettingPage)}>
+      <button type="button" className="btn btn-outline-secondary mb-4 d-flex" onClick={() => setIsSettingPage(!isSettingPage)}>
         {
         {
           isSettingPage
           isSettingPage
-            ? <><span className="material-symbols-outlined">arrow_left_alt</span>{t('admin:audit_log_management.return')}</>
-            : <><span className="material-symbols-outlined">settings</span>{t('admin:audit_log_management.settings')}</>
+            ? <><span className="material-symbols-outlined me-1">arrow_left_alt</span>{t('admin:audit_log_management.return')}</>
+            : <><span className="material-symbols-outlined me-1">settings</span>{t('admin:audit_log_management.settings')}</>
         }
         }
       </button>
       </button>