mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
style(console): move done button to right in sie guide (#1325)
This commit is contained in:
parent
ec0e92d44c
commit
f2323484c9
2 changed files with 15 additions and 8 deletions
|
@ -71,7 +71,12 @@
|
|||
left: 0;
|
||||
right: 0;
|
||||
background: var(--color-layer-1);
|
||||
padding: _.unit(6) _.unit(20);
|
||||
text-align: right;
|
||||
|
||||
.footerContent {
|
||||
padding: _.unit(6) 0;
|
||||
display: flex;
|
||||
justify-content: right;
|
||||
@include _.main-content-width;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -133,12 +133,14 @@ const GuideModal = ({ isOpen, onClose }: Props) => {
|
|||
)}
|
||||
</div>
|
||||
<div className={styles.footer}>
|
||||
<Button
|
||||
isLoading={isSubmitting}
|
||||
type="primary"
|
||||
htmlType="submit"
|
||||
title="admin_console.general.done"
|
||||
/>
|
||||
<div className={styles.footerContent}>
|
||||
<Button
|
||||
isLoading={isSubmitting}
|
||||
type="primary"
|
||||
htmlType="submit"
|
||||
title="admin_console.general.done"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</FormProvider>
|
||||
|
|
Loading…
Reference in a new issue