| 123456789101112131415161718192021222324252627 |
- /* Cell Component */
- /* Header Component */
- /* Button Component */
- /* Tab Item Component */
- /* Tabbar Component */
- /* Navbar Component */
- /* Checklist Component */
- /* Radio Component */
- /* z-index */
- .mint-cell-swipe .mint-cell-wrapper {
- position: relative;
- }
- .mint-cell-swipe .mint-cell-wrapper, .mint-cell-swipe .mint-cell-left, .mint-cell-swipe .mint-cell-right {
- -webkit-transition: -webkit-transform 150ms ease-in-out;
- transition: -webkit-transform 150ms ease-in-out;
- transition: transform 150ms ease-in-out;
- transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
- }
- .mint-cell-swipe-buttongroup {
- height: 100%;
- }
- .mint-cell-swipe-button {
- height: 100%;
- display: inline-block;
- padding: 0 10px;
- line-height: 48px;
- }
|