New Backend changes

This commit is contained in:
2025-09-02 18:47:12 +02:00
parent 6d76acc0bc
commit 27af6a0953
54 changed files with 485 additions and 684 deletions

View File

@@ -66,18 +66,18 @@ const showFile = (file) => {
<style scoped>
.documentListItem {
display:block;
display: block;
width: 15vw;
aspect-ratio: 1 / 1.414;
padding:1em;
padding: 1em;
margin: 0.7em;
border: 1px solid lightgrey;
border-radius: 15px;
transition: box-shadow 0.2s ease; /* für smooth hover */
}
.documentListItem:hover {
border: 1px solid #69c350;
cursor: pointer;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* sanfter Shadow beim Hover */
}
.previewEmbed {