Guest User

Untitled

a guest
Jun 3rd, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. export class Layout extends React.Component<{}, {}> {
  2.  
  3. constructor(props: any) {
  4. super(props);
  5. }
  6.  
  7. public render() {
  8. return <div className='container-fluid' id='userNameID' data-UserName="">
  9. <div className='row' id='Conteiner'>
  10. <div className='nav_top_line'>
  11. < NavMenuData User="" Password="" />
  12. </div>
  13.  
  14. <div className='nav_container' id='nav_container'>
  15. { this.props.children }
  16. </div>
  17. </div>
  18. </div>;
  19. }
  20. }
  21.  
  22. /*
  23.  
  24. My CSS style:
  25.  
  26. .nav_top_line {
  27. width: 100%;
  28. height: 55px;
  29. left: 0px;
  30. top: 0px;
  31. z-index: 100;
  32. }
  33.  
  34.  
  35. .nav_container {
  36. padding-top:55px;
  37. width: 100%;
  38. padding-left:20px;
  39. padding-right:20px;
  40. height: calc(100%-55px);
  41. }
  42.  
  43. */
Add Comment
Please, Sign In to add comment