diff --git a/src/app/components/left-side-bar/left-side-bar.component.html b/src/app/components/left-side-bar/left-side-bar.component.html index 310d3f50..a5840902 100644 --- a/src/app/components/left-side-bar/left-side-bar.component.html +++ b/src/app/components/left-side-bar/left-side-bar.component.html @@ -1,6 +1,7 @@
- + + diff --git a/src/app/components/left-side-bar/left-side-bar.component.scss b/src/app/components/left-side-bar/left-side-bar.component.scss index 4bc39ed3..5ac86e38 100644 --- a/src/app/components/left-side-bar/left-side-bar.component.scss +++ b/src/app/components/left-side-bar/left-side-bar.component.scss @@ -25,10 +25,12 @@ $height-button: 40px; transition: all .2s; // outline: 1px dotted greenyellow; &--status { - padding: 5px 0 0 10px; + font-size: 26px; + padding: 5px 0 0 12px; } &--search { - padding: 0 0 0 9px; + font-size: 28px; + padding: 0 0 0 11px; } &--add { padding: 0 0 0 12px; diff --git a/src/app/components/left-side-bar/left-side-bar.component.ts b/src/app/components/left-side-bar/left-side-bar.component.ts index 9b7f2dc7..24341533 100644 --- a/src/app/components/left-side-bar/left-side-bar.component.ts +++ b/src/app/components/left-side-bar/left-side-bar.component.ts @@ -1,10 +1,11 @@ import { Component, OnInit, OnDestroy } from "@angular/core"; -import { Subscription, BehaviorSubject, Observable } from "rxjs"; +import { Subscription, Observable } from "rxjs"; import { Store } from "@ngxs/store"; +import { faCommentAlt } from "@fortawesome/free-regular-svg-icons"; import { Account } from "../../services/models/mastodon.interfaces"; import { AccountWrapper } from "../../models/account.models"; -import { AccountsStateModel, AccountInfo, SelectAccount } from "../../states/accounts.state"; +import { AccountInfo, SelectAccount } from "../../states/accounts.state"; import { NavigationService, LeftPanelType } from "../../services/navigation.service"; import { MastodonService } from "../../services/mastodon.service"; @@ -15,6 +16,8 @@ import { MastodonService } from "../../services/mastodon.service"; styleUrls: ["./left-side-bar.component.scss"] }) export class LeftSideBarComponent implements OnInit, OnDestroy { + faCommentAlt = faCommentAlt; + accounts: AccountWrapper[] = []; hasAccounts: boolean; private accounts$: Observable;