Replaced bootstraps classes in app with tailwind #395
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
BREAKING CHANGE: Bootstrap CSS classes replaced with Tailwind equivalents
Overview
This commit systematically replaces all Bootstrap CSS classes with Tailwind CSS equivalents across 310 ERB template files. All Tailwind classes use the
tw-
prefix for proper namespacing.Changes Made
Key Mappings
container
→tw-container tw-max-w-7xl tw-mx-auto tw-px-4
btn btn-primary
→tw-bg-blue-500 hover:tw-bg-blue-600 tw-text-white tw-px-4 tw-py-2 tw-rounded tw-transition-colors
card
→tw-bg-white tw-border tw-border-gray-200 tw-rounded-lg tw-shadow-sm
d-flex
→tw-flex
form-control
→tw-w-full tw-px-3 tw-py-2 tw-border tw-border-gray-300 tw-rounded-md tw-focus:tw-outline-none tw-focus:tw-ring-2 tw-focus:tw-ring-blue-500
Impact
Testing