Skip to content

Commit 55e779a

Browse files
committed
fix: use h-full in outer most div
1 parent c934762 commit 55e779a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/databrowser/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const RedisBrowser = ({ token, url }: RedisCredentials) => {
2323
<DatabrowserProvider redisCredentials={credentials}>
2424
<KeysProvider>
2525
{/* ups-db is the custom class used to prefix every style in the css bundle */}
26-
<div className="ups-db">
26+
<div className="ups-db h-full">
2727
<PanelGroup
2828
autoSaveId="persistence"
2929
direction="horizontal"
@@ -32,7 +32,7 @@ export const RedisBrowser = ({ token, url }: RedisCredentials) => {
3232
<Panel defaultSize={30} minSize={30}>
3333
<Sidebar />
3434
</Panel>
35-
<PanelResizeHandle className="h-fullm flex w-1.5 items-center justify-center rounded-full hover:bg-zinc-300/20">
35+
<PanelResizeHandle className="h-full flex w-1.5 items-center justify-center rounded-full hover:bg-zinc-300/20">
3636
<IconDotsVertical
3737
size={16}
3838
stroke={1}

0 commit comments

Comments
 (0)