Skip to content

Commit

Permalink
Fix height in login template
Browse files Browse the repository at this point in the history
  • Loading branch information
NilsBaumgartner1994 committed Jul 26, 2023
1 parent 7e68873 commit 95d7349
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ import {CookieInformation} from "../screens/legalRequirements/CookieInformation"
import {ConfigHolder} from "../ConfigHolder";
import {TranslationKeys} from "../translations/TranslationKeys";

const titleBoxHeight = 64;

export const LoginTemplate: FunctionComponent = (props) => {
/**
breakpoints = {
Expand Down Expand Up @@ -43,7 +41,7 @@ export const LoginTemplate: FunctionComponent = (props) => {

function renderSpaceBetweenLogoAndSignIn(){
return (
<View style={{height: titleBoxHeight}}></View>
<View style={{height: 16}}></View>
)
}

Expand Down

0 comments on commit 95d7349

Please sign in to comment.