0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-24 22:05:56 -05:00

fix(console): sdk selector content in the guide should be left-aligned (#1316)

This commit is contained in:
Xiao Yijun 2022-06-30 15:37:13 +08:00 committed by GitHub
parent 0e93792fe9
commit 99cd56f963
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -13,6 +13,10 @@
margin: _.unit(1) auto _.unit(8);
}
.congratsText {
width: 100%;
}
.title {
font: var(--font-title-large);
}
@ -24,7 +28,9 @@
}
.radioGroup {
width: 100%;
margin-top: _.unit(6);
margin-right: 0;
}
.radio {

View file

@ -63,7 +63,7 @@ const SdkSelector = ({
return (
<Card className={classNames(styles.card, className)}>
<CongratsIcon className={styles.congrats} />
<div>
<div className={styles.congratsText}>
<div className={styles.title}>{t('applications.guide.title')}</div>
<div className={styles.subtitle}>{t('applications.guide.subtitle')}</div>
</div>