Upgrade Tailwind to v4 (#491)

This commit is contained in:
Gregory Schier
2026-07-02 09:53:22 -07:00
committed by GitHub
parent bdf78254b5
commit 9b524e3dc7
112 changed files with 744 additions and 1027 deletions
@@ -72,7 +72,7 @@ export function TextViewer({
if (isSearching) {
nodes.push(
<div key="input" className="w-full !opacity-100">
<div key="input" className="w-full opacity-100!">
<Input
key={filterKey ?? "filter"}
validate={!filteredResponse.error}
@@ -100,7 +100,7 @@ export function TextViewer({
icon={isSearching ? "x" : "filter"}
title={isSearching ? "Close filter" : "Filter response"}
onClick={toggleSearch}
className={classNames("border !border-border-subtle", isSearching && "!opacity-100")}
className={classNames("border border-border-subtle!", isSearching && "opacity-100!")}
/>,
);