0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

style(console): add radio groups margin-top on the sie branding page (#2629)

This commit is contained in:
Xiao Yijun 2022-12-09 19:47:46 +08:00 committed by GitHub
parent 25e90fb408
commit 6c2d3daf7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -33,7 +33,7 @@ const BrandingForm = () => {
control={control}
defaultValue={BrandingStyle.Logo_Slogan}
render={({ field: { onChange, value, name } }) => (
<RadioGroup value={value} name={name} onChange={onChange}>
<RadioGroup value={value} name={name} className={styles.radioGroup} onChange={onChange}>
<Radio
value={BrandingStyle.Logo_Slogan}
title="sign_in_exp.branding.styles.logo_slogan"

View file

@ -11,6 +11,10 @@
color: var(--color-neutral-variant-60);
}
.radioGroup {
margin-top: _.unit(3);
}
.formFieldDescription {
font: var(--font-body-medium);
color: var(--color-text-secondary);