fix: cancel the last modification.vue

I wanna add this:
<style>
  #listing{
    height: calc(100vh - 8em);   
    overflow-y: auto; 
  }
</style>
But as I tested, when the folder is pretty large with 3000pics, it will not show the entire list. To solve this, I think we need to use the virtual list.
This commit is contained in:
niubility000 2024-03-06 22:57:48 +08:00 committed by GitHub
parent 0f55024c8a
commit 1e4b2271f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -150,9 +150,3 @@ export default {
},
};
</script>
<style>
#listing{
height: calc(100vh - 8em);
overflow-y: auto;
}
</style>