@loafmarkets/ui 0.1.207 → 0.1.208
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 +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9223,10 +9223,14 @@ var TokenDetailRow = styled9__default.default.div`
|
|
|
9223
9223
|
display: flex;
|
|
9224
9224
|
justify-content: space-between;
|
|
9225
9225
|
align-items: center;
|
|
9226
|
-
padding: 0.55rem 0;
|
|
9226
|
+
padding: 0.55rem 0.75rem;
|
|
9227
|
+
margin: 0 -0.75rem;
|
|
9227
9228
|
border-bottom: 1px solid rgba(255,255,255,0.04);
|
|
9228
|
-
|
|
9229
|
-
|
|
9229
|
+
border-radius: 6px;
|
|
9230
|
+
transition: background 0.15s;
|
|
9231
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9232
|
+
&:last-child { border-bottom: none; padding-bottom: 0.55rem; }
|
|
9233
|
+
&:first-of-type { padding-top: 0.55rem; }
|
|
9230
9234
|
`;
|
|
9231
9235
|
var TokenDetailLabel = styled9__default.default.span`
|
|
9232
9236
|
font-size: 0.82rem;
|