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.4KB

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