Skip to content
Snippets Groups Projects
Commit 4bc146e8 authored by Chif Gergő's avatar Chif Gergő
Browse files

Bugfixes

parent b1113234
Branches
Tags
No related merge requests found
...@@ -49,7 +49,7 @@ componentWillReceiveProps() { ...@@ -49,7 +49,7 @@ componentWillReceiveProps() {
const { visible, messageType, text } = this.props.message; const { visible, messageType, text } = this.props.message;
const messageProps = messages.find(item => item.type === messageType); const messageProps = messages.find(item => item.type === messageType);
return ( return (
<Container style={{ margin: '1.5em', paddingLeft: '1.5em' }}> <Container style={visible ? { padding: '1.5em', paddingBottom: '0.5em' } : { padding: '0em' }}>
{ messageProps ? { messageProps ?
<Message <Message
icon={messageProps.icon} icon={messageProps.icon}
......
...@@ -32,8 +32,10 @@ class MobileContainer extends Component { ...@@ -32,8 +32,10 @@ class MobileContainer extends Component {
<Segment inverted textAlign='center' vertical> <Segment inverted textAlign='center' vertical>
<Container> <Container>
<Menu inverted secondary> <Menu inverted secondary>
<Menu.Item onClick={visible ? this.handleHideClick : this.handleShowClick}><Icon name='sidebar'/></Menu.Item> <Menu.Item onClick={visible ? this.handleHideClick : this.handleShowClick}>
<Icon name='sidebar'/>
<Image size='mini' src={KSZKlogo} style={{ marginRight: '1.5em' }} /> <Image size='mini' src={KSZKlogo} style={{ marginRight: '1.5em' }} />
</Menu.Item>
<Menu.Item position='right'> <Menu.Item position='right'>
{ {
this.props.user.id ? this.props.user.id ?
......
...@@ -30,7 +30,7 @@ class Profile extends Component { ...@@ -30,7 +30,7 @@ class Profile extends Component {
> >
<Segment inverted color='red' tertiary> <Segment inverted color='red' tertiary>
<p style={{ fontSize: '1.33em' }}> <p style={{ fontSize: '1.33em' }}>
A profilod mentés után is módosítható a későbbiekben, egészen február 14. 23:59-ig. A profilod mentés után is módosítható a későbbiekben, egészen február 13. 17:00-ig.
</p> </p>
</Segment> </Segment>
<Form> <Form>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment