10000 suppress fade animation for SQL results · githubocto/flat-viewer@62bdc9f · GitHub
[go: up one dir, main page]

Skip to content

Commit 62bdc9f

Browse files
author
Matt Rothenberg
committed
suppress fade animation for SQL results
1 parent c83b98c commit 62bdc9f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/components/db-explorer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ function DBExplorerInner(props: DBExplorerInnerProps) {
189189
{(error as Error)?.message || "An unexpected error occurred."}
190190
</div>
191191
)}
192-
<div className="relative flex-1 h-full">
192+
<div className="relative flex-1 h-full sql-results">
193193
{status === "loading" && (
194194
<div className="absolute top-4 right-4 z-20">
195195
<Spinner />

src/index.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,7 @@ body,
8282
display: block;
8383
}
8484
}
85+
86+
.sql-results .fade-up-in {
87+
animation: none !important;
88+
}

0 commit comments

Comments
 (0)
0