FooterWrap.tsx 396 B

1234567891011121314151617181920
  1. import styled from 'styled-components';
  2. const FooterWrap = styled.div`
  3. box-sizing: border-box;
  4. position: absolute;
  5. left: 0;
  6. bottom: 0;
  7. padding: 10px;
  8. width: 100%;
  9. min-height: 44px;
  10. line-height: 1.5;
  11. font-size: 14px;
  12. color: #ccc;
  13. background-color: rgba(0, 0, 0, 0.5);
  14. text-align: justify;
  15. transition: opacity 0.2s ease-out;
  16. z-index: 20;
  17. `;
  18. export default FooterWrap;