123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .tab-bar {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 48px;
- background: white;
- display: flex;
- padding-bottom: env(safe-area-inset-bottom);
- border-radius: 20px 20px 0 0;
- box-shadow: 0px 8px 20px 0px rgba(0,0,0,.5);
- z-index: 0;
- }
- .tab-bar-border {
- background-color: rgba(0, 0, 0, 0.33);
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 1px;
- transform: scaleY(0.5);
- }
- .tab-bar-item {
- flex: 1;
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- position: relative;
- }
- .tab-bar-item.center {
- margin-top: -14px;
- }
- .tab-bar-item.center image {
- width: 41px;
- height: 41px;
- z-index: 3;
- border-radius: 50%;
- }
- /* .tab-bar-item.center::after {
- content: '';
- width: 80px;
- height: 50px;
- position: absolute;
- left: 50%;
- top: 15px;
- background: #FFF;
- transform: translate(-50%, 0);
- z-index: 0;
- } */
- .tab-bar-item.center::before {
- content: '';
- width: 46px;
- height: 46px;
- position: absolute;
- left: 50%;
- top: 0;
- transform: translate(-50%, 0px);
- background: #FFF;
- border-radius: 180px 180px 0 0;
- box-shadow: 0px 8px 20px 0px rgba(0,0,0,.5);
- }
- .tab-bar-item image {
- width: 27px;
- height: 27px;
- }
- .tab-bar-item view {
- font-size: 10px;
- }
|