Fixed scroll issue on login screen
This commit is contained in:
parent
470fdd62bb
commit
7ba1aabc09
1 changed files with 13 additions and 10 deletions
|
@ -10,6 +10,7 @@ import Text from '../../atoms/text/Text';
|
|||
import Button from '../../atoms/button/Button';
|
||||
import Input from '../../atoms/input/Input';
|
||||
import Spinner from '../../atoms/spinner/Spinner';
|
||||
import ScrollView from '../../atoms/scroll/ScrollView';
|
||||
|
||||
import CinnySvg from '../../../../public/res/svg/cinny.svg';
|
||||
|
||||
|
@ -266,6 +267,7 @@ Auth.propTypes = {
|
|||
|
||||
function StaticWrapper({ children }) {
|
||||
return (
|
||||
<ScrollView invisible>
|
||||
<div className="auth__wrapper flex--center">
|
||||
<div className="auth-card">
|
||||
<div className="auth-card__interactive flex-v">
|
||||
|
@ -280,6 +282,7 @@ function StaticWrapper({ children }) {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ScrollView>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue