wux-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
51 lines (42 loc) • 1.01 kB
text/less
@import "../styles/mixins/index.less";
@import "../styles/themes/index.less";
.@{wux-prefix}-prompt {
display: flex;
height: 100%;
align-items: center;
justify-content: center;
color: @prompt-color;
background-color: @prompt-bg;
&__bd {
margin-top: 0;
text-align: center;
}
&__icon {
.square(@prompt-icon-size);
}
&__title {
font-size: @font-size-lg;
font-weight: bold;
color: @heading-color;
margin: 2px 0;
}
&__text {
font-size: @font-size-sm;
margin: 2px 0;
}
&__button {
font-size: @font-size-sm;
line-height: 2;
margin: 4px auto;
width: 100px;
padding: 2px 0;
border: @border-width-base @border-style-base @border-color-base;
&::after {
display: none;
}
&--hover {
color: @text-color ;
background-color: @active-state-bg ;
}
}
}