parcel/style/main.css
Blake Rain bdb5d9113c
All checks were successful
Check / check (push) Successful in 1m7s
feat: allow dropping files into index page to open upload modal
2024-08-09 10:07:20 +01:00

51 lines
896 B
CSS

@import "tailwind.css";
@import "components/button.css";
@import "components/drop.css";
@import "components/form.css";
@import "components/modal.css";
@import "components/panel.css";
@import "components/table.css";
@import "utils/icons.css";
@import "utils/animation.css";
body.has-web-components .no-web-components {
display: none;
}
@layer components {
body {
@apply bg-neutral-100 text-neutral-800;
@apply dark:bg-gray-900 dark:text-neutral-300;
@apply flex flex-col min-h-screen;
}
a {
@apply text-blue-900 dark:text-blue-200;
&:hover {
@apply text-blue-700 dark:text-blue-400;
}
&.no-color {
@apply text-inherit;
&:hover {
@apply text-inherit;
}
}
}
}
@layer utilities {
.text-danger {
@apply text-red-500 dark:text-red-400;
}
.text-success {
@apply text-green-600 dark:text-green-400;
}
}