@@ -104,7 +104,7 @@ export function TableDiff() {
104
104
// If we're still loading, show loading state
105
105
if ( isLoadingDiff ) {
106
106
return (
107
- < div className = "h-full w-full " >
107
+ < div className = "h-[100vh] w-[100vw] " >
108
108
< LoadingStatus > Running table diff...</ LoadingStatus >
109
109
</ div >
110
110
)
@@ -115,7 +115,7 @@ export function TableDiff() {
115
115
// Show results if we have them
116
116
if ( tableDiffData ) {
117
117
return (
118
- < div className = "h-full w-full " >
118
+ < div className = "h-[100vh] w-[100vw] " >
119
119
< TableDiffResults data = { tableDiffData } />
120
120
</ div >
121
121
)
@@ -124,7 +124,7 @@ export function TableDiff() {
124
124
// Show error if there was one
125
125
if ( diffError ) {
126
126
return (
127
- < div className = "h-full w-full flex items-center justify-center" >
127
+ < div className = "h-[100vh] w-[100vw] flex items-center justify-center" >
128
128
< div className = "text-red-400 text-center" >
129
129
< div className = "text-lg font-semibold mb-2" >
130
130
Error running table diff
@@ -137,7 +137,7 @@ export function TableDiff() {
137
137
138
138
// If we have initial data but no results and no error, show appropriate message
139
139
return (
140
- < div className = "h-full w-full flex items-center justify-center" >
140
+ < div className = "h-[100vh] w-[100vw] flex items-center justify-center" >
141
141
< div className = "text-neutral-400 text-center" >
142
142
< div className = "text-lg font-semibold mb-2" > No differences found</ div >
143
143
< div >
@@ -154,15 +154,15 @@ export function TableDiff() {
154
154
// If we don't have initial data yet, show loading
155
155
if ( ! hasInitialData ) {
156
156
return (
157
- < div className = "h-full w-full " >
157
+ < div className = "h-[100vh] w-[100vw] " >
158
158
< LoadingStatus > Loading...</ LoadingStatus >
159
159
</ div >
160
160
)
161
161
}
162
162
163
163
// This should never happen with the new flow
164
164
return (
165
- < div className = "h-full w-full flex items-center justify-center" >
165
+ < div className = "h-[100vh] w-[100vw] flex items-center justify-center" >
166
166
< div className = "text-neutral-400 text-center" >
167
167
< div className = "text-lg font-semibold mb-2" > Unexpected state</ div >
168
168
< div > Please try running the table diff command again.</ div >
0 commit comments