Skip to content
Scalekit Docs
Talk to an Engineer Dashboard

Brand your login page

A sign up or a login page is the first interaction your users have with your application. It’s important to create a consistent and branded experience for your users. In this guide, we’ll show you how to customize the Scalekit-managed login page to match your brand.

Navigate to Customization > Branding in your Scalekit dashboard.

SettingDescriptionOptions
LogoUpload your company logo for the sign-in boxAny image file or URL
FaviconSet a custom favicon for the browser tabAny image file or URL
Border RadiusAdjust the roundness of the login box cornersSmall, Medium, Large
Logo PositionChoose where your logo appearsInside or outside the login box
Logo AlignmentAlign your logo horizontallyLeft, Center, Right
Header Text AlignmentAlign the main header textLeft, Center, Right
Social Login PlacementControl positioning of social login buttonsVarious placement options
Background ColorSet the background color of the login pageColor picker selection
Background StyleStyle the page background using CSS shorthand propertiesSupports image, position, size, repeat, origin, clip, and attachment

The Background Style setting allows you to fully customize your login page background using CSS shorthand properties. This powerful feature gives you complete control over how your background appears.

CSS background shorthand combines multiple background properties into a single declaration. Instead of setting each property separately, you can define them all at once.

background: [background-color] [background-image] [background-position] [background-size] [background-repeat] [background-origin] [background-clip] [background-attachment];

Learn more on MDN

Use caseBackground Style valueDescription
Background imageurl('https://example.com/your-image.jpg') center center/cover no-repeatSets a background image that covers the entire page
Position and repeaturl('https://example.com/pattern.png') top left repeatCreates a tiled pattern with specific positioning
Gradientlinear-gradient(135deg, #4568DC, #B06AB3)Creates a smooth gradient transition between colors
Image with fallback#f5f5f5 url('https://example.com/image.jpg') center center/cover no-repeatUses a background color that shows if the image fails to load