修改Alarm组件

This commit is contained in:
Cool 2024-07-04 15:15:35 +08:00
parent 50f82b71de
commit a4e642a7db
1 changed files with 4 additions and 4 deletions

View File

@ -25,14 +25,14 @@ export default {
<style> <style>
@keyframes flashing { @keyframes flashing {
0% { 0% {
/* background: var(--alarmStyle-color); */ opacity: 1;
} }
50% { 50% {
background: transparent; opacity: 0;
} }
100% { 100% {
/* background: var(--alarmStyle-color); */ opacity: 1;
} }
} }
.alarmOn { .alarmOn {