123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .t-float-left {
- float: left;
- }
- .t-float-right {
- float: right;
- }
- @keyframes tdesign-fade-out {
- from {
- opacity: 1;
- }
- to {
- opacity: 0;
- }
- }
- .hotspot-expanded.relative {
- position: relative;
- }
- .hotspot-expanded::after {
- content: '';
- display: block;
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- transform: scale(1.5);
- }
- .t-tab-bar {
- width: 100%;
- height: 48px;
- background-color: #fff;
- display: flex;
- flex-wrap: nowrap;
- align-items: center;
- position: relative;
- font-size: 16px;
- }
- .t-tab-bar--border::before {
- position: absolute;
- box-sizing: border-box;
- content: ' ';
- pointer-events: none;
- right: 0;
- left: 0;
- top: 0;
- border-top: 1px solid #e6e6e6;
- transform: scaleY(0.5);
- }
- .t-tab-bar--fixed {
- position: fixed;
- left: 0;
- bottom: 0;
- }
- .t-tab-bar--safe {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
- .t-tab-bar t-tab-bar-item:first-child::before {
- border: unset;
- }
|