12345678910111213141516171819202122232425262728293031323334 |
- .mobile-container {
- display: flex;
- flex-direction: column;
- height: 100vh;
-
- .router-outlet {
- flex: 1;
- overflow-y: auto;
- }
-
- .bottom-nav {
- display: flex;
- justify-content: space-around;
- background: white;
- box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
-
- a {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 8px 0;
- text-decoration: none;
- color: #666;
-
- mat-icon {
- margin-bottom: 4px;
- }
-
- &.active {
- color: #3f51b5;
- }
- }
- }
- }
|