antd-mobile-taro-ui
Version:
以antd-mobile为设计标准,基于taro框架的微信小程序组件库
59 lines (58 loc) • 1.07 kB
CSS
.adm-popup {
--z-index: var(--popup-z-index, 1000);
transition: all 0.3s;
position: fixed;
z-index: var(--z-index);
}
.adm-popup-body {
position: fixed;
background-color: #ffffff;
z-index: calc(var(--z-index) + 10);
transition: all 0.3s;
}
.adm-popup-body .adm-popup-close-icon {
position: absolute;
z-index: 100;
}
.adm-popup-body-position-bottom {
width: 100%;
bottom: 0;
left: 0;
}
.adm-popup-body-position-bottom .adm-popup-close-icon {
right: 8px;
top: 8px;
}
.adm-popup-body-position-top {
width: 100%;
top: 0;
left: 0;
}
.adm-popup-body-position-top .adm-popup-close-icon {
right: 8px;
bottom: 8px;
}
.adm-popup-body-position-left {
height: 100%;
top: 0;
left: 0;
}
.adm-popup-body-position-left .adm-popup-close-icon {
right: 8px;
top: 8px;
}
.adm-popup-body-position-right {
height: 100%;
top: 0;
right: 0;
}
.adm-popup-body-position-right .adm-popup-close-icon {
left: 8px;
top: 8px;
}
.adm-popup-close-icon {
cursor: pointer;
padding: 4px;
font-size: 18px;
color: var(--adm-color-weak);
}