| 1234567891011121314151617181920212223242526272829303132333435 |
- /* Cell Component */
- /* Header Component */
- /* Button Component */
- /* Tab Item Component */
- /* Tabbar Component */
- /* Navbar Component */
- /* Checklist Component */
- /* Radio Component */
- /* z-index */
- .mint-tab-item {
- display: block;
- padding: 7px 0;
- -webkit-box-flex: 1;
- -ms-flex: 1;
- flex: 1;
- text-decoration: none
- }
- .mint-tab-item-icon {
- width: 24px;
- height: 24px;
- margin: 0 auto 5px
- }
- .mint-tab-item-icon:empty {
- display: none
- }
- .mint-tab-item-icon > * {
- display: block;
- width: 100%;
- height: 100%
- }
- .mint-tab-item-label {
- color: inherit;
- font-size: 12px;
- line-height: 1
- }
|