Merge pull request #7862 from overleaf/ab-home-button-style

[web] Make the home button more consistent with the rest of the header

GitOrigin-RevId: 456727917fd61423ca2b41eedb79d9861675d2cb
This commit is contained in:
Alexandre Bourdin 2022-05-12 11:34:15 +02:00 committed by Copybot
parent eb81b2b6de
commit fe18fbe157

View file

@ -14,9 +14,15 @@ function BackToProjectsButton() {
</Tooltip>
}
>
<a className="toolbar-header-back-projects" href="/project">
<Icon type="home" fw accessibilityLabel={t('back_to_your_projects')} />
</a>
<div className="toolbar-item">
<a className="btn btn-full-height" href="/project">
<Icon
type="home"
fw
accessibilityLabel={t('back_to_your_projects')}
/>
</a>
</div>
</OverlayTrigger>
)
}