59 lines
887 B
Plaintext
59 lines
887 B
Plaintext
.uni-popup-message {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
}
|
|
|
|
.uni-popup-message__box {
|
|
background-color: #e1f3d8;
|
|
border: 1px solid #eee;
|
|
flex: 1;
|
|
padding: 10px 15px;
|
|
}
|
|
|
|
@media screen and (min-width:500px) {
|
|
.fixforpc-width {
|
|
border-radius: 4px;
|
|
flex: none;
|
|
margin-top: 20px;
|
|
max-width: 50%;
|
|
min-width: 380px;
|
|
}
|
|
}
|
|
|
|
.uni-popup-message-text {
|
|
font-size: 14px;
|
|
padding: 0;
|
|
}
|
|
|
|
.uni-popup__success {
|
|
background-color: #e1f3d8;
|
|
}
|
|
|
|
.uni-popup__success-text {
|
|
color: #67c23a;
|
|
}
|
|
|
|
.uni-popup__warn {
|
|
background-color: #faecd8;
|
|
}
|
|
|
|
.uni-popup__warn-text {
|
|
color: #e6a23c;
|
|
}
|
|
|
|
.uni-popup__error {
|
|
background-color: #fde2e2;
|
|
}
|
|
|
|
.uni-popup__error-text {
|
|
color: #f56c6c;
|
|
}
|
|
|
|
.uni-popup__info {
|
|
background-color: #f2f6fc;
|
|
}
|
|
|
|
.uni-popup__info-text {
|
|
color: #909399;
|
|
} |