Skip to content

Commit

Permalink
apply style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Julesssss committed May 12, 2023
1 parent 91ced53 commit 4237d03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/pages/signin/SignInPageLayout/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ const propTypes = {
scrollPageToTop: PropTypes.func.isRequired,
};

const defaultProps = {
};
const defaultProps = {};

const navigateHome = (scrollPageToTop) => {
scrollPageToTop();
Expand All @@ -35,7 +34,7 @@ const navigateHome = (scrollPageToTop) => {
Session.clearSignInData();
};

const columns = ({scrollPageToTop}) => ([
const columns = ({scrollPageToTop}) => [
{
translationPath: 'footer.features',
rows: [
Expand Down Expand Up @@ -148,7 +147,7 @@ const columns = ({scrollPageToTop}) => ([
},
],
},
]);
];

const Footer = (props) => {
const isVertical = props.isSmallScreenWidth;
Expand Down
1 change: 0 additions & 1 deletion src/styles/getModalStyles/getBaseModalStyles.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import variables from '../variables';
import themeColors from '../themes/default';
import styles from '../styles';


const getCenteredModalStyles = (windowWidth, isSmallScreenWidth) => ({
borderWidth: styles.centeredModalStyles(isSmallScreenWidth).borderWidth,
width: isSmallScreenWidth ? '100%' : windowWidth - styles.centeredModalStyles(isSmallScreenWidth).marginHorizontal * 2,
Expand Down

0 comments on commit 4237d03

Please sign in to comment.