fixed username display cutoff bug

This commit is contained in:
Martina 2020-09-05 19:27:30 -07:00
parent 9ba92505cb
commit b43fbb3126
2 changed files with 4 additions and 4 deletions

View File

@ -83,9 +83,9 @@ const STYLES_PROFILE_USERNAME = css`
min-width: 10%;
width: 100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
padding-left: 12px;
text-overflow: ellipsis;
padding: 12px;
user-select: none;
font-family: ${Constants.font.medium};
font-size: 14px;
@ -172,7 +172,6 @@ export default class ApplicationUserControls extends React.Component {
>
<PopoverNavigation
style={{ position: "relative", top: "8px" }}
itemStyle={{ color: Constants.system.darkGray }}
navigation={[
{
text: "Account settings",

View File

@ -31,9 +31,10 @@ const STYLES_POPOVER_ITEM = css`
transition: 200ms ease all;
cursor: pointer;
font-size: 12px;
color: rgba(0, 0, 0, 0.5);
:hover {
color: ${Constants.system.brand} !important;
color: ${Constants.system.brand};
}
`;