Browse Source

style(registration): reduce width of form area on registration page

sw 1 month ago
parent
commit
a865e6dbd6
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/pages/patient/register.tsx

+ 3 - 3
src/pages/patient/register.tsx

@@ -103,7 +103,7 @@ const RegisterPage: React.FC = () => {
             md={8}
             lg={8}
             xl={8}
-            xxl={8}
+            xxl={6}
             style={{
               display: 'flex',
               flexDirection: 'column',
@@ -112,10 +112,10 @@ const RegisterPage: React.FC = () => {
           >
             <BasicInfoForm form={form} style={{ overflow: 'auto' }} />
           </Col>
-          <Col xs={24} sm={24} md={8} lg={8} xl={8} xxl={8} className="h-full">
+          <Col xs={24} sm={24} md={8} lg={8} xl={8} xxl={9} className="h-full">
             <RegisterAvailableList />
           </Col>
-          <Col xs={24} sm={24} md={8} lg={8} xl={8} xxl={8} className="h-full">
+          <Col xs={24} sm={24} md={8} lg={8} xl={8} xxl={9} className="h-full">
             <SelectedProtocolList />
           </Col>
         </Row>