diff --git a/src/components/auth/appInfo/AppInfo.jsx b/src/components/auth/appInfo/AppInfo.jsx
index c1c26df..7545554 100644
--- a/src/components/auth/appInfo/AppInfo.jsx
+++ b/src/components/auth/appInfo/AppInfo.jsx
@@ -3,7 +3,6 @@ import React, { Component, PropTypes } from 'react';
import { FormattedMessage as Message } from 'react-intl';
import { Button } from 'components/ui/form';
-import { LangMenu } from 'components/langMenu';
import { FooterMenu } from 'components/footerMenu';
import styles from './appInfo.scss';
@@ -56,9 +55,8 @@ export default class AppInfo extends Component {
-
);
diff --git a/src/components/auth/appInfo/appInfo.scss b/src/components/auth/appInfo/appInfo.scss
index a6193db..d33ddcc 100644
--- a/src/components/auth/appInfo/appInfo.scss
+++ b/src/components/auth/appInfo/appInfo.scss
@@ -65,7 +65,7 @@
}
}
-.langMenu {
+.footer {
position: absolute;
bottom: 10px;
left: 0;
diff --git a/src/components/footerMenu/FooterMenu.jsx b/src/components/footerMenu/FooterMenu.jsx
index 444a544..5d65b57 100644
--- a/src/components/footerMenu/FooterMenu.jsx
+++ b/src/components/footerMenu/FooterMenu.jsx
@@ -3,6 +3,8 @@ import React, { Component, PropTypes } from 'react';
import { Link } from 'react-router';
import { FormattedMessage as Message } from 'react-intl';
+import { LangMenu } from 'components/langMenu';
+
import styles from './footerMenu.scss';
import messages from './footerMenu.intl.json';
@@ -10,7 +12,6 @@ export default class FooterMenu extends Component {
static displayName = 'FooterMenu';
static propTypes = {
- skin: PropTypes.oneOf(['light', 'dark']),
createPopup: PropTypes.func.isRequired
};
@@ -24,6 +25,8 @@ export default class FooterMenu extends Component {
+
+
);
}
diff --git a/src/components/footerMenu/footerMenu.scss b/src/components/footerMenu/footerMenu.scss
index 0e7d8da..085de1c 100644
--- a/src/components/footerMenu/footerMenu.scss
+++ b/src/components/footerMenu/footerMenu.scss
@@ -1,5 +1,6 @@
.footerMenu {
font-size: 12px;
+ line-height: 1.5;
color: #666;
a {
diff --git a/src/components/langMenu/langMenu.scss b/src/components/langMenu/langMenu.scss
index 3122204..8614bad 100644
--- a/src/components/langMenu/langMenu.scss
+++ b/src/components/langMenu/langMenu.scss
@@ -15,9 +15,11 @@
margin: 0 auto 10px;
perspective: 600px;
+ pointer-events: none;
}
.menu {
+ pointer-events: auto;
background: #fff;
border: 5px solid #ddd8ce;
border-left: 0;
diff --git a/src/pages/profile/profile.scss b/src/pages/profile/profile.scss
index 70d3c36..cf0b9d6 100644
--- a/src/pages/profile/profile.scss
+++ b/src/pages/profile/profile.scss
@@ -3,7 +3,7 @@
position: relative;
box-sizing: border-box;
- padding: 55px 10px 45px; // 45px for footer
+ padding: 55px 10px 65px; // 65px for footer
}
.footer {