diff --git a/k8s/operator-console/operator/kustomization.yaml b/k8s/operator-console/operator/kustomization.yaml deleted file mode 100644 index e636c9b4b..000000000 --- a/k8s/operator-console/operator/kustomization.yaml +++ /dev/null @@ -1,9 +0,0 @@ -apiVersion: kustomize.config.k8s.io/v1beta1 -kind: Kustomization -# beginning of customizations -#namespace: min-ns - -resources: - - ../base - - https://github.com/minio/operator/?ref=v3.0.29 - diff --git a/portal-ui/src/common/HelpBox.tsx b/portal-ui/src/common/HelpBox.tsx index 3cd6e9f83..4831decf8 100644 --- a/portal-ui/src/common/HelpBox.tsx +++ b/portal-ui/src/common/HelpBox.tsx @@ -25,38 +25,47 @@ const styles = (theme: Theme) => root: { border: "1px solid rgb(234, 237, 238)", borderRadius: 5, + paddingTop: 10, + paddingLeft: 40, + paddingRight: 40, + paddingBottom: 40, marginTop: 10, marginBottom: 10, backgroundColor: "#fbfafa", }, icon: { - textAlign: "center", - padding: 30, - fontSize: 64, + fontSize: 16, + fontWeight: "bold", + marginBottom: 20, "& .MuiSvgIcon-root": { - fontSize: 64, + fontSize: 44, + marginRight: 15, }, }, iconSize: { fontSize: 64, }, - helpText: { padding: 30, paddingLeft: 0, fontSize: 16 }, + helpText: { + fontSize: 16, + }, }); interface IHelpBox { classes: any; iconComponent: any; + title: string; help: any; } -const HelpBox = ({ classes, iconComponent, help }: IHelpBox) => { +const HelpBox = ({ classes, iconComponent, title, help }: IHelpBox) => { return (