diff --git a/src/web/src/app/+accounts/account-title.component.scss b/src/web/src/app/+accounts/account-title.component.scss index d8e4f05a2..70b3bf89e 100644 --- a/src/web/src/app/+accounts/account-title.component.scss +++ b/src/web/src/app/+accounts/account-title.component.scss @@ -3,6 +3,8 @@ :host { display: block; position: relative; + word-break: break-all; + padding-right: 15px; .account-value-login { display: inline; @@ -22,5 +24,6 @@ position: absolute; top: 0; right: 0; + opacity: 0.65; } } diff --git a/src/web/src/app/+accounts/accounts.component.scss b/src/web/src/app/+accounts/accounts.component.scss index 0b1b5d5e8..509c1c573 100644 --- a/src/web/src/app/+accounts/accounts.component.scss +++ b/src/web/src/app/+accounts/accounts.component.scss @@ -1,6 +1,8 @@ @import "~src/web/src/variables"; $accounts-column-width: 250px; +$account-item-padding-y: $list-group-item-padding-y * 0.65; +$account-item-padding-x: $list-group-item-padding-x * 0.65; $webview-border: darken($app-color-bg-dark, 10%); :host { @@ -47,7 +49,7 @@ $webview-border: darken($app-color-bg-dark, 10%); .list-group-item { word-wrap: break-word; - padding: ($list-group-item-padding-y * 0.65) ($list-group-item-padding-x * 0.65); + padding: $account-item-padding-y $account-item-padding-x; } } @@ -73,12 +75,15 @@ $webview-border: darken($app-color-bg-dark, 10%); width: 100%; border-top-left-radius: $btn-border-radius; border-bottom-left-radius: $btn-border-radius; - white-space: normal; } .dropdown-menu { margin-top: $app-spacer-2; width: 100%; + + .dropdown-item { + padding: $account-item-padding-y $account-item-padding-x; + } } }