You can customize the Unified Checkout to support your checkout context and brand guidelines by using Layouts and Styling APIs.
Choose a layout that fits well with your UI pattern. There are two types of layout options as listed below. The layout defaults to accordion if not explicitly specified.
The accordion layout displays payment methods vertically using an accordion. To use this layout, set the value for layout to accordion. You also have the option to specify other properties, such as those shown in the following example.
var paymentElementOptions = {
layout: {
type: 'accordion',
defaultCollapsed: false,
radios: true,
spacedAccordionItems: false
},
}
—------or—---------
var paymentElementOptions = {
layout: 'accordion'
}
<PaymentElement id="payment-element" options={paymentElementOptions} />
The tabs layout displays payment methods horizontally using tabs. To use this layout, set the value for layout to tabs. You also have the option to specify other properties, such as tabs or collapsed.
var paymentElementOptions = {
layout: 'tabs'
}
<PaymentElement id="payment-element" options={paymentElementOptions} />
The Styling APIs could be used to blend the Unified Checkout with the rest of your app or website.
Variable | Description |
---|---|
fontFamily | The font family is used throughout Widgets. Widget supports css fonts and custom fonts by passing the fonts option; reference to elements consumer |
fontSizeBase | The font size that’s set on the root of the Widget. By default, other font size variables like fontSizeXs or fontSizeSm are scaled from this value using rem units |
spacingUnit | The base spacing unit that all other spacing is derived from. Increase or decrease this value to make your layout more or less spacious |
borderRadius | The border radius used for tabs, inputs, and other components in the Widget |
colorPrimary | A primary color used throughout the Widget. Set this to your primary brand color |
colorBackground | The color used for the background of inputs, tabs, and other components in the Widget |
colorText | The default text color used in the Widget |
colorDanger | A color used to indicate errors or destructive actions in the Widget |
fontVariantLigatures | The font-variant-ligatures setting of text in the Widget |
fontVariationSettings | The font-variation-settings setting of text in the Widget |
fontWeightLight | The font weight used for light text |
fontWeightNormal | The font weight used for normal text |
fontWeightMedium | The font weight used for medium text |
fontWeightBold | The font weight used for bold text |
fontLineHeight | The line-height setting of text in the Widget |
fontSizeXl | The font size of extra-large text in the Widget. By default this is scaled from var(—fontSizeBase) using rem units |
fontSizeLg | The font size of large text in the Widget. By default this is scaled from var(—fontSizeBase) using rem units |
fontSizeSm | The font size of small text in the Widget. By default this is scaled from var(—fontSizeBase) using rem units |
fontSizeXs | The font size of extra-small text in the Widget. By default this is scaled from var(—fontSizeBase) using rem units |
fontSize2Xs | The font size of double-extra small text in the Widget. By default this is scaled from var(—fontSizeBase) using rem units |
fontSize3Xs | The font size of triple-extra small text in the Widget. By default this is scaled from var(—fontSizeBase) using rem units |
colorSuccess | A color used to indicate positive actions or successful results in the Element |
colorWarning | A color used to indicate potentially destructive actions in the Element |
colorPrimaryText | The color of text appearing on top of any a var(—colorPrimary) background |
colorBackgroundText | The color of text appearing on top of any a var(—colorBackground) background |
colorSuccessText | The color of text appearing on top of any a var(—colorSuccess) background |
colorDangerText | The color of text appearing on top of any a var(—colorDanger) background |
colorWarningText | The color of text appearing on top of any a var(—colorWarning) background |
colorTextSecondary | The color used for text of secondary importance. For example, this color is used for the label of a tab that isn’t currently selected |
colorTextPlaceholder | The color used for input placeholder text in the Widget |
The rules option is a map of CSS-like selectors to CSS properties, allowing granular customization of individual components. After defining your theme and variables, use rules to seamlessly integrate Elements to match the design of your site. The selector for a rule can target any of the public class names in the Element, as well as the supported states, pseudo-classes, and pseudo-elements for each class. For example, the following are valid selectors:
Each class name used in a selector supports an allowlist of CSS properties that you specify using camel case (for example, boxShadow for the box-shadow property). The following is the complete list of supported class names and corresponding states, pseudo-classes, and pseudo-elements.
Class Name | States | Pseudo-Classes | Pseudo-Elements |
---|---|---|---|
.Tabs | —selected | :hover, :focus, :active, :disabled | |
fontSizeBase | —selected | :hover, :focus, :active, :disabled | |
spacingUnit | —selected | :hover, :focus, :active, :disabled |
Each class name used in a selector supports an allowlist of CSS properties that you specify using camel case (for example, boxShadow for the box-shadow property). The following is the complete list of supported class names and corresponding states, pseudo-classes, and pseudo-elements.
Class Name | States | Pseudo-Classes | Pseudo-Elements |
---|---|---|---|
.Tabs | —selected | :hover, :focus, :active, :disabled | |
fontSizeBase | —selected | :hover, :focus, :active, :disabled | |
spacingUnit | —selected | :hover, :focus, :active, :disabled |
const appearance = {
rules: {
".TabLabel": {
overflowWrap: "break-word",
},
".Tab--selected": {
display: "flex",
gap: "8px",
flexDirection: "row",
justifyContent: "center",
alignItems: "center",
padding: "15px 32px",
background: "linear-gradient(109deg,#f48836,#f4364c)",
color: "#ffffff",
fontWeight: "700",
borderRadius: "25px",
},
".Tab--selected:hover": {
display: "flex",
gap: "8px",
flexDirection: "row",
justifyContent: "center",
alignItems: "center",
padding: "15px 32px",
background: "linear-gradient(109deg,#f48836,#f4364c)",
borderRadius: "25px",
color: "#ffffff !important",
fontWeight: "700",
},
},
};
const elements = hyper.elements({ clientSecret, appearance });
const elements = hyper.elements({ clientSecret, appearance });
Class Name | States | Pseudo-Classes | Pseudo-Elements |
---|---|---|---|
.Label | —empty, —invalid | ||
.Input | —empty, —invalid | :hover, :focus, :disabled, :autofill | ::placeholder, ::selection |
.Error |
Class Name | States | Pseudo-Classes | Pseudo-Elements |
---|---|---|---|
.Checkbox | —checked | :hover | |
.CheckboxLabel | —checked | :hover | |
.CheckboxInput | —checked | :hover |
Hyperswitch Unified Checkout supports localization in 6 languages. By default, the Unified Checkout SDK will detect the locale of the customer’s browser and display the localized version of the payment sheet if that locale is supported. In case it is not supported, we default to English. To override, you can send locale in hyper.elements (options)
We support the following locales -
If you need support for locales other than the ones mentioned above, please contact the Hyperswitch team.