style.css 912 B

12345678910111213141516171819202122232425262728293031323334353637
  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-tabbar {
  11. background-image: -webkit-linear-gradient(top, #d9d9d9, #d9d9d9 50%, transparent 50%);
  12. background-image: linear-gradient(180deg, #d9d9d9, #d9d9d9 50%, transparent 50%);
  13. background-size: 100% 1px;
  14. background-repeat: no-repeat;
  15. background-position: top left;
  16. position: relative;
  17. background-color: #fafafa;
  18. display: -webkit-box;
  19. display: -ms-flexbox;
  20. display: flex;
  21. right: 0;
  22. bottom: 0;
  23. left: 0;
  24. position: absolute;
  25. text-align: center;
  26. }
  27. .mint-tabbar > .mint-tab-item.is-selected {
  28. background-color: #eaeaea;
  29. color: #26a2ff;
  30. }
  31. .mint-tabbar.is-fixed {
  32. right: 0;
  33. bottom: 0;
  34. left: 0;
  35. position: fixed;
  36. z-index: 1;
  37. }