Как мне поместить div под div в JSON?

#css #json #sharepoint

Вопрос:

Я работаю в SharePoint, и есть возможность настраивать списки с помощью JSON. Я хочу иметь 3 дива.

  1. Изображение (50х50)
  2. Заголовок (занимает остальную часть строки)
  3. Под строкой изображения/заголовка я хочу поместить div с кнопкой.

Но я продолжаю получать…

введите описание изображения здесь

Мой код json приведен ниже…

     "elmType": "div",
    "attributes": {
        "class": "ms-borderColor-neutralTertiary"
    },
    "style": {
        "width": "99%",
        "border-top-width": "0px",
        "border-bottom-width": "1px",
        "border-left-width": "0px",
        "border-right-width": "0px",
        "border-style": "solid",
        "margin-bottom": "16px"
    },
    "children": [
        {
            "elmType": "div",
            "style": {
                "display": "flex",
                "box-sizing": "border-box",
                "align-items": "center"
            },
            "children": [
                {
                    "elmType": "div",
                    "attributes": {
                        "iconName": "Group",
                        "class": "ms-fontSize-42 ms-fontWeight-regular ms-fontColor-themePrimary",
                        "title": "Details"
                    },
                    "style": {
                        "flex": "none",
                        "padding": "0px",
                        "padding-left": "0px",
                        "height": "36px"
                    }
                }
            ]
        },
        {
            "elmType": "div",
            "attributes": {
                "class": "ms-fontColor-neutralSecondary ms-fontWeight-bold ms-fontSize-24"
            },
            "style": {
                "box-sizing": "border-box",
                "width": "100%",
                "text-align": "left",
                "padding": "21px 12px",
                "overflow": "hidden",
                "border": "1px solid green",
                "position": "relative"
            },
            "children": [
                {
                    "elmType": "div",
                    "txtContent": "='Details for document: '   [$Title]"
                }
            ]
        },
        {
            "elmType": "div",
            "style": {
                "width": "auto",
                "float": "left",
                "border": "1px solid red"
            },
            "children": [
                {
                    "elmType": "button",
                    "txtContent": "Create a New PR"
                }
            ]
        }
    ]
}```