| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /* Cell Component */
- /* Header Component */
- /* Button Component */
- /* Tab Item Component */
- /* Tabbar Component */
- /* Navbar Component */
- /* Checklist Component */
- /* Radio Component */
- /* z-index */
- .mint-header {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- background-color: #26a2ff;
- box-sizing: border-box;
- color: #fff;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- font-size: 14px;
- height: 40px;
- line-height: 1;
- padding: 0 10px;
- position: relative;
- text-align: center;
- white-space: nowrap;
- }
- .mint-header .mint-button {
- background-color: transparent;
- border: 0;
- box-shadow: none;
- color: inherit;
- display: inline-block;
- padding: 0;
- font-size: inherit
- }
- .mint-header .mint-button::after {
- content: none;
- }
- .mint-header.is-fixed {
- top: 0;
- right: 0;
- left: 0;
- position: fixed;
- z-index: 1;
- }
- .mint-header-button {
- -webkit-box-flex: .5;
- -ms-flex: .5;
- flex: .5;
- }
- .mint-header-button > a {
- color: inherit;
- }
- .mint-header-button.is-right {
- text-align: right;
- }
- .mint-header-button.is-left {
- text-align: left;
- }
- .mint-header-title {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: inherit;
- font-weight: 400;
- -webkit-box-flex: 1;
- -ms-flex: 1;
- flex: 1;
- }
|