Fix alignment of icons in Layout menu (#7889)

GitOrigin-RevId: 5187c42304d85f22ae7baefe7b7bcf5eed829805
This commit is contained in:
Alf Eaton 2022-05-16 10:48:42 +01:00 committed by Copybot
parent 54d66a8e09
commit e689017c3c
2 changed files with 8 additions and 5 deletions

View file

@ -117,7 +117,7 @@ function LayoutDropdownButton() {
view={view}
detachRole={detachRole}
/>
<Icon type="columns" />
<Icon type="columns" fw />
{t('editor_and_pdf')}
</MenuItem>
@ -131,7 +131,9 @@ function LayoutDropdownButton() {
view={view}
detachRole={detachRole}
/>
<IconEditorOnly />
<i className="fa fa-fw">
<IconEditorOnly />
</i>
<span>
<Trans
i18nKey="editor_only_hide_pdf"
@ -152,7 +154,9 @@ function LayoutDropdownButton() {
view={view}
detachRole={detachRole}
/>
<IconPdfOnly />
<i className="fa fa-fw">
<IconPdfOnly />
</i>
<span>
<Trans
i18nKey="pdf_only_hide_editor"

View file

@ -179,8 +179,7 @@
}
#layout-dropdown-list {
a {
i,
svg {
i {
margin-right: @margin-xs;
}
}