Switch from Webpacker to cssbundling-rails, upgrade Tailwind

This commit is contained in:
2022-02-11 17:23:31 -06:00
parent 1b17cfb396
commit 32f02cc18a
25 changed files with 26270 additions and 1355 deletions

View File

@@ -0,0 +1,15 @@
@layer components {
input[type=text], input[type=email], input[type=password],
input[type=number], select {
@apply mt-1 rounded-md bg-gray-100 focus:bg-white
border-transparent focus:border-gray-500 focus:ring-0;
}
.field_with_errors {
@apply inline-block;
}
.error-msg {
@apply text-red-700;
}
}