visuddhinanda hace 2 años
padre
commit
61a6a3fc8b
Se han modificado 1 ficheros con 7 adiciones y 4 borrados
  1. 7 4
      dashboard/src/components/template/SentEdit/SentCell.tsx

+ 7 - 4
dashboard/src/components/template/SentEdit/SentCell.tsx

@@ -143,9 +143,12 @@ const SentCellWidget = ({
           }
           }
         }}
         }}
       >
       >
-        <Space
-          direction={compact ? "horizontal" : "vertical"}
-          style={{ alignItems: "flex-start" }}
+        <div
+          style={{
+            display: "flex",
+            flexDirection: compact ? "row" : "column",
+            alignItems: "flex-start",
+          }}
         >
         >
           <EditInfo data={sentData} compact={compact} />
           <EditInfo data={sentData} compact={compact} />
           {isEditMode ? (
           {isEditMode ? (
@@ -187,7 +190,7 @@ const SentCellWidget = ({
             prOpen={prOpen}
             prOpen={prOpen}
             onPrClose={() => setPrOpen(false)}
             onPrClose={() => setPrOpen(false)}
           />
           />
-        </Space>
+        </div>
       </SentEditMenu>
       </SentEditMenu>
       {compact ? undefined : <Divider style={{ margin: "10px 0" }} />}
       {compact ? undefined : <Divider style={{ margin: "10px 0" }} />}
     </div>
     </div>