Personal Dashboard

App.scss 422B

123456789101112131415161718192021222324252627
  1. @import '~@blueprintjs/core/dist/variables.scss';
  2. .flex-frame {
  3. display: flex;
  4. flex-direction: column;
  5. min-height: 100vh;
  6. background: $pt-app-background-color;
  7. main {
  8. flex: 1;
  9. padding: 50px;
  10. }
  11. footer {
  12. nav {
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. }
  17. }
  18. }
  19. .title {
  20. font-family: 'Cinzel';
  21. }