|
+
handleUpdateWorldColor(w.originalIdx, "name", e.target.value)}
- className="w-full bg-black/40 border border-[#373737] px-2 py-1 outline-none focus:border-[#FFFF55] text-white text-sm"
+ className="mc-textinput w-full h-10 px-3 text-white text-sm outline-none font-[var(--font-base)]"
/>
+
|
|
@@ -311,6 +321,7 @@ export default function ColEditorView() {
}}
className="w-6 h-6 p-0 cursor-pointer shrink-0 border border-[#373737] rounded-sm bg-transparent"
/>
+
>> 0);
}
}}
- className="bg-black/40 border border-[#373737] w-20 px-2 py-1 outline-none focus:border-[#FFFF55] text-white font-mono text-xs uppercase"
+ className="mc-textinput w-full h-10 px-3 text-white font-mono text-xs uppercase outline-none font-[var(--font-base)]"
maxLength={8}
/>
+
|
@@ -338,6 +350,7 @@ export default function ColEditorView() {
}}
className="w-6 h-6 p-0 cursor-pointer shrink-0 border border-[#373737] rounded-sm bg-transparent"
/>
+
>> 0);
}
}}
- className="bg-black/40 border border-[#373737] w-20 px-2 py-1 outline-none focus:border-[#FFFF55] text-white font-mono text-xs uppercase"
+ className="mc-textinput w-full h-10 px-3 text-white font-mono text-xs uppercase outline-none font-[var(--font-base)]"
maxLength={8}
/>
+
|
diff --git a/src/components/views/GoldMapperView.tsx b/src/components/views/GoldMapperView.tsx
index 30b53c1..4f49c88 100644
--- a/src/components/views/GoldMapperView.tsx
+++ b/src/components/views/GoldMapperView.tsx
@@ -354,7 +354,7 @@ const GoldMapperView = memo(function GoldMapperView() {
? handleToggleEnabled
: () => openBind(row.id)
}
- className={`w-full h-10 flex items-center pl-6 pr-4 outline-none border-none shrink-0 transition-colors ${
+ className={`w-full h-10 flex items-center ${!isEnable ? "pl-6" : "pl-2"} pr-4 outline-none border-none shrink-0 transition-colors ${
focused
? "text-[#ffff00]"
: isEnable
@@ -386,7 +386,7 @@ const GoldMapperView = memo(function GoldMapperView() {
)}
@@ -425,9 +425,9 @@ const GoldMapperView = memo(function GoldMapperView() {
|