@bigtablet/design-system 1.18.2 → 1.18.4
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/dist/index.css +3 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -435,6 +435,7 @@
|
|
|
435
435
|
}
|
|
436
436
|
.file_input:hover .file_input_label {
|
|
437
437
|
border-color: rgba(0, 0, 0, 0.08);
|
|
438
|
+
cursor: pointer;
|
|
438
439
|
}
|
|
439
440
|
.file_input_control {
|
|
440
441
|
position: absolute;
|
|
@@ -1096,7 +1097,7 @@
|
|
|
1096
1097
|
border-radius: 12px;
|
|
1097
1098
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
|
|
1098
1099
|
max-width: calc(100% - 32px);
|
|
1099
|
-
overflow:
|
|
1100
|
+
overflow: visible;
|
|
1100
1101
|
}
|
|
1101
1102
|
.modal_header {
|
|
1102
1103
|
padding: 1rem;
|
|
@@ -1108,4 +1109,5 @@
|
|
|
1108
1109
|
}
|
|
1109
1110
|
.modal_body {
|
|
1110
1111
|
padding: 1rem;
|
|
1112
|
+
overflow: visible;
|
|
1111
1113
|
}
|
package/dist/index.js
CHANGED
|
@@ -350,7 +350,7 @@ var FileInput = ({
|
|
|
350
350
|
disabled && "file_input_disabled",
|
|
351
351
|
className ?? ""
|
|
352
352
|
].filter(Boolean).join(" ");
|
|
353
|
-
return /* @__PURE__ */ jsxs("div", { className: rootClassName, children: [
|
|
353
|
+
return /* @__PURE__ */ jsxs("div", { style: { cursor: "pointer" }, className: rootClassName, children: [
|
|
354
354
|
/* @__PURE__ */ jsx(
|
|
355
355
|
"input",
|
|
356
356
|
{
|