Overview
This article describes how to change the text alignment of universal login widgets.
Applies To
- Universal Login Widgets
- Text Alignment
Solution
- On the Auth0 Dashboard, navigate to Branding > Universal Login > Customization Options.
- Click Widget under the Styles menu on the left.
- Choose between left, center, and right alignment under the Header text alignment setting on the right:
NOTE: This will change the text alignment for all widgets.
To manage this via Terraform, use the auth0_branding_theme resource. For example:
resource "auth0_branding_theme" "my_theme" {
widget {
header_text_alignment = "left"
}
}