12345678910111213141516171819202122232425262728 |
- .nav-item image {
- width: 30px;
- height: 30px;
- border-radius: 50%;
- }
- .category-nav-container {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- flex-wrap: wrap;
- text-align: center;
- background-color: #fff;
- padding: 0px 0;
- }
- .nav-item {
- width: 20%;
- padding: 10px 0px;
- box-sizing: border-box;
- font-size: 12px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .category-name {
- margin-top: 5px;
- font-size: 12px;
- }
|