Guest User

Untitled

a guest
Oct 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. const NavWrapper = styled.div`
  2. display: flex;
  3. width: 100%;
  4. z-index: 99999;
  5. flex-direction: column;
  6. background-color: white;
  7. border-bottom: 1px solid #ccc;
  8. position: ${props => (props.isFirstChildScrolled ? 'fixed' : 'inline-block')};
  9. top: ${props => ((props.isFirstChildScrolled && props.isDownScroll) ? '-100px' : (props.isFirstChildScrolled && !props.isDownScroll) ? '0px' : null)};
  10. transition: ${props => (props.isFirstChildScrolled ? 'all' : 'none')};
  11.  
  12. ${devices.desktop`
  13. font-size: 4.0em;
  14. min-height: 100px;
  15. `};
  16. `;
Add Comment
Please, Sign In to add comment