@colisweb/rescript-toolkit 4.21.0 → 4.21.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/mock/MockOverlay.res +2 -2
package/package.json
CHANGED
package/src/mock/MockOverlay.res
CHANGED
|
@@ -27,10 +27,10 @@ let make = (~worker: Msw.worker, ~workerOptions: Msw.startOptions={}, ~className
|
|
|
27
27
|
<React.Suspense fallback={<Toolkit__Ui_SpinnerFullScreen />}>
|
|
28
28
|
<label
|
|
29
29
|
className={cx([
|
|
30
|
-
"fixed top-2 left-1/2 flex flex-row gap-2 items-center justify-center",
|
|
30
|
+
"fixed top-2 left-1/2 flex flex-row gap-2 items-center justify-center z-50",
|
|
31
31
|
mockEnabled
|
|
32
32
|
? "bg-success-100 border-success-400 text-success-700"
|
|
33
|
-
: "bg-neutral-100 p-1 border rounded-lg
|
|
33
|
+
: "bg-neutral-100 p-1 border rounded-lg cursor-pointer",
|
|
34
34
|
className,
|
|
35
35
|
])}>
|
|
36
36
|
<span> {"Mock"->React.string} </span>
|