This commit is contained in:
Nicolas Constant 2019-02-23 18:23:02 -05:00
parent 3dd75cf99e
commit a9096d651c
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
2 changed files with 6 additions and 2 deletions

View File

@ -33,10 +33,9 @@
</div>
<div class="profile-sub-header ">
<div *ngIf="account && hasNote" class="profile-description">
<app-databinded-text class="status__content" [textIsSelectable]="false" [text]="account.note"
<app-databinded-text class="profile-description__content" [textIsSelectable]="false" [text]="account.note"
(accountSelected)="browseAccount($event)" (hashtagSelected)="browseHashtag($event)">
</app-databinded-text>
<!-- <p innerHTML="{{account.note}}"></p> -->
</div>
<div class="profile-statuses">
<app-waiting-animation *ngIf="statusLoading" class="waiting-icon"></app-waiting-animation>

View File

@ -97,6 +97,11 @@ $header-height: 160px;
padding: 10px 10px 15px 10px;
font-size: 13px;
border-bottom: 1px solid black;
&__content {
width: calc(100%);
word-break: break-word;
}
}
&-no-toots {