style.css 706 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* Cell Component */
  2. /* Header Component */
  3. /* Button Component */
  4. /* Tab Item Component */
  5. /* Tabbar Component */
  6. /* Navbar Component */
  7. /* Checklist Component */
  8. /* Radio Component */
  9. /* z-index */
  10. .mint-navbar {
  11. background-color: #fff;
  12. display: -webkit-box;
  13. display: -ms-flexbox;
  14. display: flex;
  15. text-align: center;
  16. }
  17. .mint-navbar .mint-tab-item {
  18. padding: 17px 0;
  19. font-size: 15px
  20. }
  21. .mint-navbar .mint-tab-item:last-child {
  22. border-right: 0;
  23. }
  24. .mint-navbar .mint-tab-item.is-selected {
  25. border-bottom: 3px solid #26a2ff;
  26. color: #26a2ff;
  27. margin-bottom: -3px;
  28. }
  29. .mint-navbar.is-fixed {
  30. top: 0;
  31. right: 0;
  32. left: 0;
  33. position: fixed;
  34. z-index: 1;
  35. }