diff --git a/src/app/components/floating-column/add-new-account/add-new-account.component.html b/src/app/components/floating-column/add-new-account/add-new-account.component.html index 23ccf41d..00274f15 100644 --- a/src/app/components/floating-column/add-new-account/add-new-account.component.html +++ b/src/app/components/floating-column/add-new-account/add-new-account.component.html @@ -1,16 +1,16 @@ -
-

Add new account

+
+

Add new account

-

Welcome Comrad!

+

Welcome Comrade!

- - Please provide your comrade account: +
- +
-
+
diff --git a/src/app/components/floating-column/add-new-account/add-new-account.component.scss b/src/app/components/floating-column/add-new-account/add-new-account.component.scss index bf13b7c3..2d73d144 100644 --- a/src/app/components/floating-column/add-new-account/add-new-account.component.scss +++ b/src/app/components/floating-column/add-new-account/add-new-account.component.scss @@ -18,44 +18,42 @@ padding: 0 5px 0 5px; } -$comrad_yellow: #ffcc00; -$comrad_red: #a50000; -.comrad { +$comrade_yellow: #ffcc00; +$comrade_red: #a50000; +.comrade { &__title { font-size: 18px; margin-left: 5px; - color: $comrad_yellow; + color: $comrade_yellow; font-weight: bold; } &__text { - color: $comrad_yellow; + color: $comrade_yellow; } &__button { - background: $comrad_yellow; - border-color: $comrad_yellow; - color: $comrad_red; + background: $comrade_yellow; + border-color: $comrade_yellow; + color: $comrade_red; } &__video { width: 300px; - // height: 200px; padding-top: 20px; margin: auto; - // outline: 1px solid greenyellow; } &__input { - color: $comrad_red; - border-color: $comrad_yellow; - background: $comrad_yellow; + color: $comrade_red; + border-color: $comrade_yellow; + background: $comrade_yellow; } &__background { transition: all 3s; background-image: url("assets/img/juche-background.jpg"); - background-color: $comrad_red; + background-color: $comrade_red; background-position: 0 0; } } \ No newline at end of file diff --git a/src/app/components/floating-column/add-new-account/add-new-account.component.ts b/src/app/components/floating-column/add-new-account/add-new-account.component.ts index 93a28fca..b6428d7b 100644 --- a/src/app/components/floating-column/add-new-account/add-new-account.component.ts +++ b/src/app/components/floating-column/add-new-account/add-new-account.component.ts @@ -18,7 +18,7 @@ export class AddNewAccountComponent implements OnInit { private username: string; private instance: string; - isComrad: boolean; + isComrade: boolean; private _mastodonFullHandle: string; @Input() @@ -47,13 +47,13 @@ export class AddNewAccountComponent implements OnInit { let cleanInstance = this.instance.replace('http://', '').replace('https://', '').toLowerCase(); for (let b of this.comradList) { if (cleanInstance == b || cleanInstance.includes(`.${b}`)) { - this.isComrad = true; + this.isComrade = true; return; } } } - this.isComrad = false; + this.isComrade = false; } onSubmit(): boolean {