A typical form field looks like the following: ```erb <%= form.textarea :address, rows: 4, class: ["block shadow-sm rounded-md border outline-hidden px-3 py-2 mt-2 w-full", {"border-gray-400 focus:outline-blue-600": order.errors[:address].none?, "border-red-400 focus:outline-red-600": order.errors[:address].any?}] %> ``` Key items: * `outline-hidden` * `focus:outline-blue-600` * `focus:outline-red-600` Missing is a focus [outline-style](https://tailwindcss.com/docs/outline-style) something like solid, dashed, dotted, or double. Not knowing the intent here, I'm hesitant to provide a PR.