All files / src/components/Footer styles.js

100% Statements 2/2
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117    61x                                                                                                                                                                                                                                    
import makeStyles from '@material-ui/core/styles/makeStyles'
 
const useStyles = makeStyles(theme => ({
  containerFooter: {
    backgroundColor: '#0F1D2F',
    border: 'none',
    paddingBottom:'64px',
  },
  subscribeSection: {
    padding: '0px 30px',
  },
  dropdownHeader: {
    alignItems: 'center',
    color: theme.palette.text.secondary,
    display: 'flex',
    justifyContent: 'space-between',
    '&:hover': {
      cursor: 'pointer',
    },
  },
  errorMessage: {
    color: theme.palette.error.main,
  },
  footerContainer: {
    position: "relative",
    padding:'56px 51.5px 0 51.5px',
    display: "flex",
    height: "100%",
    maxWidth:'100vw',
    justifyContent: "space-between",
    // info header links
    '& a:nth-child(1)': {
      fontWeight: 700,
      marginTop: 0,
    },
    // info links
    '& a': {
      color: theme.palette.text.secondary,
      display: 'block',
      marginTop: theme.spacing(1.5),
      textDecoration: 'none',
    },
  },
  annotation: {
    marginTop: theme.spacing(6),
    textAlign: 'center',
    '& a': {
      display: 'inline',
      textDecoration: 'underline',
    },
    '& p': {
      margin: 0,
      paddingBottom: theme.spacing(1),
      fontSize: theme.font.small.fontSize,
    },
  },
  socialContainer: {
    width:'208px',
    display:'flex',
    justifyContent:'space-between',
    alignItems:'center',
    '& a': {
      margin: 0,
    },
  },
  socialIcons: {
    marginTop:'12px',
  },
  socialContainerLarge: {
    textAlign: 'center',
    '& a': {
      marginBottom: theme.spacing(1.5),
    },
  },
  subscribeSectionLarge:{
    maxWidth:'293px',
  },
  subscribeSectionSmall:{
    display:'flex',
    justifyContent:'space-between',
  },
  newsLetter:{
    maxWidth:'403px',
  },
  emailSubscribe: {
    display:'flex',
    justifyContent:'space-between',
    '& button': {
      marginLeft:'8px',
    },
  },
  successMessage: {
    textAlign: 'center',
  },
  textField: {
    backgroundColor: theme.palette.background.default,
    borderRadius: '8px',
    marginBottom: '0px 8px 5px 0px',
    width:'100%',
  },
  sectionPaddingSm: {
    padding: '0px 10px 16px 0px',
  },
  sectionPaddingLg: {
    padding: '0px 0px 10px 0px',
  },
  submitBtn:{
    marginTop:'5px!important' ,
    fontSize:'16px!important',
  },
  linkTypography:{
    fontSize: '14px!important',
  },
}));
 
export default useStyles;