Added base part to documentation to help with support

This commit is contained in:
frikky
2022-04-25 23:08:33 +02:00
parent 9cbef6752f
commit cb939fb59f
11 changed files with 190 additions and 99 deletions
+4 -2
View File
@@ -3133,13 +3133,15 @@ const Workflows = (props) => {
: null}
</div>
<div style={{ marginTop: 15 }} />
{actionImageList !== undefined &&
{!isMobile &&
actionImageList !== undefined &&
actionImageList !== null &&
actionImageList.length > 0 ? (
<div
style={{
display: "flex",
maxWidth: 1024,
maxWidth: isMobile ? "100%" : 1024,
minWidth: isMobile ? "100%" : 1024,
zIndex: 11,
border: "1px solid rgba(255,255,255,0.1)",
borderRadius: theme.palette.borderRadius,