parcel/style/main.css
Blake Rain 176cdf493c
Some checks failed
Check / check (push) Failing after 3m17s
fix: swap uploads table to a CSS grid
Really this has become necessary to combat things like `colspan` not
respecting hidden columns and other problems with table layout. To
get the sizes to work we were using `fixed` layout, and in the end
it is easier to use grid.
2024-08-15 13:37:48 +01:00

54 lines
988 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 "components/uploads.css";
@import "utils/animation.css";
@import "utils/icons.css";
@import "utils/triangles.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 cursor-pointer;
@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;
}
}