notif-visa-ext/popup/popup.css

25 lines
270 B
CSS
Raw Normal View History

2024-04-20 05:14:53 +00:00
#saveStatus {
opacity: 0;
transition: opacity 0.5s;
color: green;
}
#saveStatus.show {
opacity: 1;
}
#resetStatus {
opacity: 0;
transition: opacity 0.5s;
color: red;
}
#resetStatus.show {
opacity: 1;
}
body {
2024-04-23 08:19:09 +00:00
min-width: 375px;
}