@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.mjs
CHANGED
|
@@ -9197,10 +9197,14 @@ var TokenDetailRow = styled9.div`
|
|
|
9197
9197
|
display: flex;
|
|
9198
9198
|
justify-content: space-between;
|
|
9199
9199
|
align-items: center;
|
|
9200
|
-
padding: 0.55rem 0;
|
|
9200
|
+
padding: 0.55rem 0.75rem;
|
|
9201
|
+
margin: 0 -0.75rem;
|
|
9201
9202
|
border-bottom: 1px solid rgba(255,255,255,0.04);
|
|
9202
|
-
|
|
9203
|
-
|
|
9203
|
+
border-radius: 6px;
|
|
9204
|
+
transition: background 0.15s;
|
|
9205
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9206
|
+
&:last-child { border-bottom: none; padding-bottom: 0.55rem; }
|
|
9207
|
+
&:first-of-type { padding-top: 0.55rem; }
|
|
9204
9208
|
`;
|
|
9205
9209
|
var TokenDetailLabel = styled9.span`
|
|
9206
9210
|
font-size: 0.82rem;
|