Files
project-minnesota/resources/css/app.css

34 lines
578 B
CSS
Raw Normal View History

2024-05-23 16:51:55 +02:00
@import 'filepond/dist/filepond.min.css';
@import 'filepond-plugin-image-preview/dist/filepond-plugin-image-preview.css';
2024-05-15 12:28:03 +02:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.paused {
animation-play-state: paused;
}
}
2024-05-23 16:51:55 +02:00
@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;
2024-06-01 03:10:30 +02:00
}