Skip to content

Commit

Permalink
Text color - No longer using color from the admin tool (#172)
Browse files Browse the repository at this point in the history
* Do not use color for now since we don't want to support desktop and mobile colors
  • Loading branch information
dr-bizz authored Nov 19, 2024
1 parent d9903a8 commit 099262e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/page/component/content-text/content-text.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 099262e

Please sign in to comment.