Fix tab captions not fitting on options page in the header

This commit is contained in:
ilyaigpetrov 2019-05-04 09:55:38 -05:00
parent 8432bc65de
commit db4eb6767d
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ export default function getTabPannel({ flags, baseCss }) {
.navLabels { .navLabels {
background-color: var(--cr-grey-panel); background-color: var(--cr-grey-panel);
text-align: center; text-align: center;
min-width: 24em; min-width: 25em;
} }
.navLabels li label { .navLabels li label {
display: inline-block; display: inline-block;

View File

@ -17,7 +17,7 @@ export default function append(document, { flags }) {
// options page width may be jerking // options page width may be jerking
// in size when scrolling is showed. // in size when scrolling is showed.
? 'width: 20em' ? 'width: 20em'
: 'max-width: 24em;' } : 'max-width: 25em;' }
} }
/* BASE ELEMENTS */ /* BASE ELEMENTS */