aboutsummaryrefslogtreecommitdiff
path: root/src/components/SearchModal.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-27 14:40:58 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-27 14:40:58 +1000
commit8e495f248ae25564b795cd7530d20c0376a7c5d8 (patch)
tree10d59542efbf895c3d504cab04a0bd5df9b55eec /src/components/SearchModal.vue
parent10e104c72a035fe41741652afc93e0137cf67fdd (diff)
Move transition/animation CSS classes to index.css
Diffstat (limited to 'src/components/SearchModal.vue')
-rw-r--r--src/components/SearchModal.vue16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/components/SearchModal.vue b/src/components/SearchModal.vue
index 86712ef..4657db2 100644
--- a/src/components/SearchModal.vue
+++ b/src/components/SearchModal.vue
@@ -214,19 +214,3 @@ export default defineComponent({
emits: ['search', 'close', 'info-click', 'setting-chg', ],
});
</script>
-
-<style>
-.animate-red-then-fade {
- animation-name: red-then-fade;
- animation-duration: 500ms;
- animation-timing-function: ease-in;
-}
-@keyframes red-then-fade {
- from {
- background-color: rgba(255,0,0,0.2);
- }
- to {
- background-color: transparent;
- }
-}
-</style>