mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
Signup page should be scrollable from everywhere (#2643)
This commit is contained in:
parent
67df2dff63
commit
8a073bd274
1 changed files with 2 additions and 2 deletions
|
|
@ -90,10 +90,10 @@ class ConfirmationPage extends React.Component {
|
|||
));
|
||||
|
||||
return (
|
||||
<div className="page page-center" ref={this.formRef}>
|
||||
<div className="page page-center" ref={this.formRef} style={{ overflowY: 'scroll' }}>
|
||||
<div
|
||||
className="container-tight py-2 invitation-page"
|
||||
style={{ overflowY: 'scroll', maxHeight: this.formRef.current && this.calculateOffset() }}
|
||||
style={{ maxHeight: this.formRef.current && this.calculateOffset() }}
|
||||
>
|
||||
<div className="text-center mb-4">
|
||||
<a href=".">
|
||||
|
|
|
|||
Loading…
Reference in a new issue