no message

This commit is contained in:
A1300399510
2024-07-04 18:24:10 +08:00
parent 753126f3dc
commit f860b38ee9
33 changed files with 258 additions and 222 deletions

36
app.vue
View File

@@ -212,4 +212,40 @@ input:focus::-webkit-contacts-auto-fill-button {
input::-webkit-contacts-auto-fill-button {
display: none !important;
}
.options-popup {
border-radius: 10px !important;
padding: 44px 74px !important;
.options-popup-text {
font-size: 14px;
color: #333333;
text-align: center;
margin-bottom: 71px;
}
.options-popup-btn {
justify-content: space-between;
.options-popup-item {
font-size: 13px;
width: 160px;
height: 40px;
border-radius: 150px;
border: 1px solid;
cursor: pointer;
&.options-yes {
background-color: rgba(249, 93, 93, 1);
border-color: rgba(249, 93, 93, 1);
color: #fff;
margin-left: 20px;
}
&.options-no {
background-color: #fff;
border-color: rgba(170, 170, 170, 1);
color: #333;
}
}
}
}
</style>