Skip to content
Snippets Groups Projects
Select Git revision
  • 658d2f6b858246e720f08047946871b87baf6ea5
  • master default protected
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.19
  • 1.0.18
  • 1.0.17
  • 1.0.16
  • 1.0.15
  • 1.0.14
  • 1.0.13
  • 1.0.12
  • 1.0.10
  • 1.0.9
  • 1.0.8
22 results

Footer.js

Blame
  • Forked from KSZK / DevTeam / kszkepzes / old / kszkepzes-frontend
    Source project has a limited visibility.
    • Bereczki Sandor's avatar
      42d6d827
      Fix footer · 42d6d827
      Bereczki Sandor authored
      Footer should be always fixed to the bottom, though you may need to use margins at the bottom element.
      42d6d827
      History
      Fix footer
      Bereczki Sandor authored
      Footer should be always fixed to the bottom, though you may need to use margins at the bottom element.
    Footer.js 302 B
    import React from 'react';
    import { Container, Segment } from 'semantic-ui-react';
    
    
    const Footer = () => (
      <Segment inverted vertical textAlign='center' >
        <Container>
          <p textalign='center' >Created by DevTeam &copy; 2017-2018.</p>
        </Container>
      </Segment>
    
    );
    
    export default Footer;