12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .journal-container{
- overflow: hidden;
- @media (height < 950px){
- overflow: auto;
- }
- height: 100vh;
- width: 100vw;
- // background-image: url("../../../assets/images/background-light.jpg");
- // background-size: cover;
- background-color: var(--background-color);
- }
- app-tabbar{
- position: fixed;
- bottom: 0;
- display: flex;
- justify-content: center;
- width: 100%;
- }
- tab-bar{
- position: fixed;
- bottom: 0;
- display: flex;
- justify-content: center;
- width: 100%;
- }
- .hidden{
- display: none;
- }
- // Not used currently
- .navigation-button{
- position: fixed;
- top: 0;
- left: 0;
- height: 2.5rem;
- width: 3rem;
- background-color: lightgray;
- border: none;
- outline: none;
- // cursor: pointer;
- }
|