123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .bottom-navigation {
- display: flex;
- justify-content: space-evenly;
- padding: 10px;
- background-color: #f5f5f5;
- position: fixed;
- bottom: 0px;
- left:0px;
- width: 100vw;
- .tab-button {
- button {
- border:none;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background: none;
- color: #888;
-
- svg {
- width: 2em;height: 2em;
- // width: 24px;
- // height: 24px;
- margin-bottom: 5px;
- }
- img {
- width: 24px;
- height: 24px;
- margin-bottom: 5px;
- }
-
- span {
- font-size: 12px;
- }
- }
-
- .active {
- color: #000;
- font-weight: bold;
- }
- }
- }
-
|