123456789101112131415161718192021222324252627282930313233343536373839 |
- .custom-nav {
- display: block;
- position: relative;
-
- &-bar {
- display: flex;
- position: fixed;
- width: 100%;
- z-index: 1024;
- left: 0;
-
- &-action {
- flex: none;
- box-sizing: border-box;
-
- .goback{
- width: 19px;
- height: 35px;
- position: absolute;
- left: 30px;
- top: 14.5px;
- }
- }
-
- &-content {
- flex: none;
- text-align: center;
- font-size: 34px;
- font-weight: bold;
- color: #333;
- cursor: none;
- pointer-events: none;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- box-sizing: border-box;
- }
- }
- }
|