@loafmarkets/ui 0.1.120 → 0.1.122
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.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2396,7 +2396,7 @@ function MobileOrderbookLayout({
|
|
|
2396
2396
|
fontSize: "0.72rem",
|
|
2397
2397
|
fontWeight: tab === "orderbook" ? 600 : 400,
|
|
2398
2398
|
color: tab === "orderbook" ? "#fff" : "rgba(255,255,255,0.6)",
|
|
2399
|
-
borderBottom: tab === "orderbook" ? "2px solid #
|
|
2399
|
+
borderBottom: tab === "orderbook" ? "2px solid #E6C87E" : "none",
|
|
2400
2400
|
paddingBottom: "0.2rem"
|
|
2401
2401
|
},
|
|
2402
2402
|
children: "Orderbook"
|
|
@@ -2411,7 +2411,7 @@ function MobileOrderbookLayout({
|
|
|
2411
2411
|
fontSize: "0.72rem",
|
|
2412
2412
|
fontWeight: tab === "trades" ? 600 : 400,
|
|
2413
2413
|
color: tab === "trades" ? "#fff" : "rgba(255,255,255,0.6)",
|
|
2414
|
-
borderBottom: tab === "trades" ? "2px solid #
|
|
2414
|
+
borderBottom: tab === "trades" ? "2px solid #E6C87E" : "none",
|
|
2415
2415
|
paddingBottom: "0.2rem"
|
|
2416
2416
|
},
|
|
2417
2417
|
children: "Trades"
|
|
@@ -12356,7 +12356,7 @@ var Tab = styled25__default.default.button`
|
|
|
12356
12356
|
font-weight: 500;
|
|
12357
12357
|
white-space: nowrap;
|
|
12358
12358
|
flex-shrink: 0;
|
|
12359
|
-
color: ${({ $active }) => $active ? "#
|
|
12359
|
+
color: ${({ $active }) => $active ? "#E6C87E" : "rgba(255, 255, 255, 0.4)"};
|
|
12360
12360
|
cursor: pointer;
|
|
12361
12361
|
transition: color 0.15s;
|
|
12362
12362
|
position: relative;
|
|
@@ -12368,7 +12368,7 @@ var Tab = styled25__default.default.button`
|
|
|
12368
12368
|
left: 0;
|
|
12369
12369
|
right: 0;
|
|
12370
12370
|
height: 2px;
|
|
12371
|
-
background: ${({ $active }) => $active ? "#
|
|
12371
|
+
background: ${({ $active }) => $active ? "#E6C87E" : "transparent"};
|
|
12372
12372
|
border-radius: 1px;
|
|
12373
12373
|
transition: background 0.15s;
|
|
12374
12374
|
}
|