Personal Dashboard

App.scss 616B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @import '~@blueprintjs/core/dist/variables.scss';
  2. html, body {
  3. margin: 0;
  4. }
  5. .pt-no-padding {
  6. padding: 0;
  7. }
  8. .pt-toast-container.pt-toast-container-top.app-toaster {
  9. top: $pt-navbar-height;
  10. }
  11. .pt-non-ideal-state {
  12. height: inherit;
  13. }
  14. .flex-frame {
  15. display: flex;
  16. flex-direction: column;
  17. min-height: 100vh;
  18. background: $pt-app-background-color;
  19. main {
  20. flex: 1;
  21. padding: 50px;
  22. }
  23. footer {
  24. nav {
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. }
  29. }
  30. }
  31. .title {
  32. font-family: 'Cinzel';
  33. }