journal-home.component.scss 782 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .journal-container{
  2. overflow: hidden;
  3. @media (height < 950px){
  4. overflow: auto;
  5. }
  6. height: 100vh;
  7. width: 100vw;
  8. // background-image: url("../../../assets/images/background-light.jpg");
  9. // background-size: cover;
  10. background-color: var(--background-color);
  11. }
  12. app-tabbar{
  13. position: fixed;
  14. bottom: 0;
  15. display: flex;
  16. justify-content: center;
  17. width: 100%;
  18. }
  19. tab-bar{
  20. position: fixed;
  21. bottom: 0;
  22. display: flex;
  23. justify-content: center;
  24. width: 100%;
  25. }
  26. .hidden{
  27. display: none;
  28. }
  29. // Not used currently
  30. .navigation-button{
  31. position: fixed;
  32. top: 0;
  33. left: 0;
  34. height: 2.5rem;
  35. width: 3rem;
  36. background-color: lightgray;
  37. border: none;
  38. outline: none;
  39. // cursor: pointer;
  40. }