1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-03 00:20:35 +02:00

overflow hidden on user menu

This commit is contained in:
Kyle Spearrin 2018-07-25 11:45:07 -04:00
parent 0e791fd0ec
commit c5bac554a7
2 changed files with 5 additions and 1 deletions

View File

@ -24,7 +24,7 @@
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="nav-profile">
<div class="dropdown-item-text d-flex align-items-center" *ngIf="name" appStopProp>
<app-avatar [data]="name" width="25" height="25" fontSize="14" [circle]="true"></app-avatar>
<div class="ml-2">
<div class="ml-2 overflow-hidden">
{{'loggedInAs' | i18n}}
<small class="text-muted">{{name}}</small>
</div>

View File

@ -701,3 +701,7 @@ img.logo {
.min-height-fix {
min-height: 1px;
}
.overflow-hidden {
overflow: hidden;
}