This commit is contained in:
2024-05-23 16:51:55 +02:00
parent 6d4dd5f653
commit fc2b66528b
19 changed files with 277 additions and 114 deletions

View File

@@ -1,3 +1,6 @@
@import 'filepond/dist/filepond.min.css';
@import 'filepond-plugin-image-preview/dist/filepond-plugin-image-preview.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
@@ -7,3 +10,23 @@
animation-play-state: paused;
}
}
@media screen(sm) {
.filepond--item {
width: calc(50% - 0.5em);
}
}
@media screen(md) {
.filepond--item {
width: calc(25% - 1em);
}
}
.filepond--panel-root {
@apply bg-gray-50 dark:bg-gray-700 !important;
}
.filepond--drop-label {
@apply text-gray-900 dark:text-white;
}