Fix toolbar popover font color

Fix popover max-width making content go outside
This commit is contained in:
Matias Arriola 2022-01-06 17:37:02 -03:00
parent 3629113e9f
commit 86e1829a37
2 changed files with 4 additions and 1 deletions

View File

@ -48,7 +48,6 @@ class KeyboardShortcutTooltip extends FloatingTip {
result.css({ result.css({
padding: '3px 0px', padding: '3px 0px',
width: '100%', width: '100%',
color: 'white',
}); });
const textContainer = $('<div></div>').text(text); const textContainer = $('<div></div>').text(text);

View File

@ -152,3 +152,7 @@ div#bottom-logo {
height: 40px; height: 40px;
z-index: 10000; z-index: 10000;
} }
.popover {
max-width: none;
}