You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.scss 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. @import '~@angular/material/theming';
  2. @include mat-core();
  3. @import 'theme.scss';
  4. .app-theme {
  5. @include angular-material-theme($app-theme);
  6. }
  7. /*
  8. * Actual Sticky Footer Styles
  9. */
  10. .all-wrap {
  11. min-height: 100vh;
  12. }
  13. .page-wrap {
  14. display: flex;
  15. flex-direction: column;
  16. min-height: 100vh;
  17. margin-left: 10px;
  18. }
  19. .content {
  20. margin-top: 10px;
  21. flex: 1;
  22. }
  23. .sidenav-menu-title {
  24. padding-left: 16px !important;
  25. color: rgb(140, 158, 255) !important;
  26. }
  27. .sidenav-menu-btn-item {
  28. width: 100%;
  29. text-align: start !important;
  30. color: white !important;
  31. }
  32. .sidenav-menu-btn-sub-item {
  33. width: 100%;
  34. padding-left: 32px !important;
  35. text-align: start !important;
  36. color: white !important;
  37. }
  38. .sidenav-menu .mat-list-item-content {
  39. padding: 0 !important;
  40. }
  41. .sidenav-menu .mat-list-item {
  42. height: 36px !important;
  43. }
  44. /*
  45. * Make the Component injected by Router Outlet full height:
  46. */
  47. main {
  48. display: flex;
  49. flex-direction: column;
  50. > *:not(router-outlet) {
  51. flex: 1;
  52. display: block;
  53. }
  54. }
  55. footer {
  56. text-align: center;
  57. }
  58. table {
  59. width: 100%;
  60. }