Skip to content

Commit 3a29b93

Browse files
committed
Fix LoginPage layout
1 parent 8731ceb commit 3a29b93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/pages/LoginPage/LoginPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class LoginPage extends Component {
4646
const { loggingIn } = this.props;
4747
const { username, password, submitted } = this.state;
4848
return (
49-
<div className="ui inverted vertical masthead center aligned segment">
49+
<div className="ui inverted vertical masthead center aligned segment" style={{ height: "100vh" }}>
5050
<Grid
5151
textAlign="center"
5252
style={{ minHeight: 700 }}

frontend/src/pages/UserDetailedPage/UserDetailedPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class UserDetailedPage extends Component {
2424
<Container key={ user.id } text style={{ marginTop: '7em' }}>
2525
<Header as='h1'>{ user.firstName + ' ' + user.lastName }</Header>
2626

27-
<FloatedItem backgroundColor={ "22222e" } imageURL={ user.imageURL } comment={ user.comment }/>
27+
<FloatedItem paddingTop={'10px'} paddingbottom={'10px'} backgroundColor={ "22222e" } imageURL={ user.imageURL } comment={ user.comment }/>
2828
</Container>
2929
)
3030
}

0 commit comments

Comments
 (0)