Personal Dashboard

App.scss 581B

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