From 099262e8eb9dc26d6a3c92ecb822ef73cb1013f3 Mon Sep 17 00:00:00 2001 From: "Bizz (Daniel Bisgrove)" <56281168+dr-bizz@users.noreply.github.com> Date: Tue, 19 Nov 2024 12:16:07 -0500 Subject: [PATCH] Text color - No longer using color from the admin tool (#172) * Do not use color for now since we don't want to support desktop and mobile colors --- .../page/component/content-text/content-text.component.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page/component/content-text/content-text.component.ts b/src/app/page/component/content-text/content-text.component.ts index 34b9f650..c7ef4918 100644 --- a/src/app/page/component/content-text/content-text.component.ts +++ b/src/app/page/component/content-text/content-text.component.ts @@ -70,8 +70,9 @@ export class ContentTextComponent implements OnChanges { ) ? 'underline' : '', - 'text-align': this.text.textAlign.name || '', - color: this.text.textColor || '' + 'text-align': this.text.textAlign.name || '' + // Do not use color for now since we don't want to support desktop and mobile colors + // color: this.text.textColor || '' }; this.textColor = this.text?.textColor || null;