|
|
@@ -69,7 +69,7 @@
|
|
|
|
|
|
<!-- 任务提醒入口 -->
|
|
|
<button
|
|
|
- class="w-full py-3 bg-white border border-gray-200 text-gray-600 rounded-xl text-sm font-medium flex items-center justify-center tap-feedback"
|
|
|
+ class="w-full py-3 bg-white border border-gray-200 text-gray-600 rounded-xl text-sm font-medium flex items-center justify-center task-reminder-btn"
|
|
|
@click="goToTaskReminder"
|
|
|
>
|
|
|
<text class="uni-icons uniui-notification-filled mr-2 text-gray-500"></text>
|
|
|
@@ -251,7 +251,10 @@ onMounted(() => {
|
|
|
.tap-feedback {
|
|
|
transition: transform 0.15s ease;
|
|
|
}
|
|
|
-.tap-feedback:active {
|
|
|
- transform: scale(0.95);
|
|
|
+.task-reminder-btn {
|
|
|
+ transition: background-color 0.15s ease;
|
|
|
+}
|
|
|
+.task-reminder-btn:active {
|
|
|
+ background-color: #f9fafb;
|
|
|
}
|
|
|
</style>
|