Как изменить ширину ряда в дизайне муравья? - PullRequest
0 голосов
/ 12 марта 2020

Почему не 100%, если 100%?

enter image description here

Я пытаюсь разделить меню на два пункта, первый - это lo go, второй - это все остальные пункты меню. Как контролировать ширину?

Мой код:

    <Header style={headerStyles}>
        <Row>
            <Col flex="auto" >
            <Title style={{ color: "rgba(0, 0, 0, 0.85)", margin: 0, fontSize: "18px" }}>
                <img src={Logo} alt="Logo" style={{ height: "32px", marginRight: "16px" }}/>
                Profile app
                <Divider type="vertical" style={{ background: "#ececec", height: "20px" }} />
            </Title>
            </Col>
            <Col flex="auto">
            <Button type="primary">Авторизация</Button>
            </Col>
        </Row>
    </Header>
...