Skip to content

Commit 5e9c01e

Browse files
committed
Fix for z-index
1 parent 42d4c50 commit 5e9c01e

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "remix-development-tools",
33
"description": "Remix development tools - a set of tools for developing/debugging Remix.run apps",
44
"author": "Alem Tuzlak",
5-
"version": "4.7.0",
5+
"version": "4.7.1",
66
"license": "MIT",
77
"keywords": [
88
"remix",
@@ -54,7 +54,9 @@
5454
"default": "./dist/client.css"
5555
}
5656
},
57-
"files": ["dist"],
57+
"files": [
58+
"dist"
59+
],
5860
"repository": {
5961
"type": "git",
6062
"url": "git+https://github.com/Code-Forge-Net/Remix-Dev-Tools.git"
@@ -91,7 +93,11 @@
9193
"icons": "npm run run:scripts scripts/icons.ts",
9294
"check:unused": "knip "
9395
},
94-
"workspaces": [".", "test-apps/*", "docs"],
96+
"workspaces": [
97+
".",
98+
"test-apps/*",
99+
"docs"
100+
],
95101
"peerDependencies": {
96102
"@remix-run/react": ">=1.15",
97103
"react": ">=17",
@@ -142,4 +148,4 @@
142148
"react-use-websocket": "^4.8.1",
143149
"tailwind-merge": "^1.14.0"
144150
}
145-
}
151+
}

src/client/RemixDevTools.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const LiveUrls = () => {
5151
}
5252
if (settings.liveUrls.length === 0) return null
5353
return (
54-
<div className={clsx("flex fixed items-center gap-2 px-2", envsClassName)}>
54+
<div className={clsx("flex fixed items-center z-[9998] gap-2 px-2", envsClassName)}>
5555
{settings.liveUrls.map((env) => {
5656
return (
5757
<Link
@@ -107,7 +107,7 @@ const Breakpoints = () => {
107107
return (
108108
<div
109109
className={clsx(
110-
"flex fixed bottom-0 left-0 mb-5 rounded-full bg-[#212121] size-10 text-white flex items-center justify-center items-center gap-2 mx-1"
110+
"flex fixed bottom-0 left-0 mb-5 rounded-full bg-[#212121] z-[9998] size-10 text-white flex items-center justify-center items-center gap-2 mx-1"
111111
)}
112112
>
113113
{breakpoint?.name}

0 commit comments

Comments
 (0)