mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(console): connector guide setup content should scroll in the whole container (#1314)
This commit is contained in:
parent
99cd56f963
commit
05399b5e59
2 changed files with 6 additions and 3 deletions
|
@ -32,11 +32,9 @@
|
|||
flex: 1;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
padding: _.unit(6) _.unit(15);
|
||||
|
||||
> * {
|
||||
flex: 1;
|
||||
margin: 0 12px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
|
@ -44,6 +42,11 @@
|
|||
background-color: var(--color-layer-1);
|
||||
border-radius: 16px;
|
||||
padding: 0 _.unit(6);
|
||||
margin: _.unit(6) _.unit(10) _.unit(6) _.unit(18);
|
||||
}
|
||||
|
||||
.setup {
|
||||
padding: _.unit(6) _.unit(18) _.unit(6) 0;
|
||||
}
|
||||
|
||||
form + div {
|
||||
|
|
|
@ -92,7 +92,7 @@ const Guide = ({ connector, onClose }: Props) => {
|
|||
</div>
|
||||
<div className={styles.content}>
|
||||
<Markdown className={styles.readme}>{readme}</Markdown>
|
||||
<div>
|
||||
<div className={styles.setup}>
|
||||
<FormProvider {...methods}>
|
||||
<form onSubmit={onSubmit}>
|
||||
<Step
|
||||
|
|
Loading…
Add table
Reference in a new issue