Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <mat-sidenav-content>
  2. <div [ngClass]="{'custom-toolbar-open':userService.isLoggedIn()}"
  3. class="d-flex custom-toolbar flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 border-bottom box-shadow bg-custom-top">
  4. <nav class="my-2 my-md-0 mr-md-3">
  5. <div class="d-inline-block" *ngIf="userService.isLoggedIn() === true" >
  6. <a class="p-2 align-middle option-icon" matTooltip="Partes diarias">
  7. <img src="assets/layout/partes.png" height="18px"/>
  8. Partes Diarias
  9. </a>
  10. </div>
  11. <div class="d-inline-block" *ngIf="userService.isLoggedIn() === true">
  12. <a class="p-2 align-middle option-icon" matTooltip="Novedades">
  13. <img src="assets/layout/novedades.png" height="18px"/>
  14. Novedades
  15. </a>
  16. </div>
  17. </nav>
  18. <h5 class="my-0 mr-md-auto font-weight-normal"></h5>
  19. </div>
  20. <div class="container" style="margin-top: 72px">
  21. <div class="main-container" style="padding:10px">
  22. <router-outlet></router-outlet>
  23. </div>
  24. <footer class="pt-4 my-md-5 pt-md-5 border-top">
  25. <div class="row">
  26. </div>
  27. </footer>
  28. </div>
  29.  
  30. .custom-toolbar {
  31. position: fixed;
  32. z-index: 9;
  33. }
  34. .custom-toolbar-open {
  35. left: 290px !important;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement