@deriv-web-design/ui 0.1.37 → 0.1.38
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 +23 -18
- package/dist/index.css.map +1 -1
- package/dist/index.js +14 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -11266,7 +11266,8 @@
|
|
|
11266
11266
|
}
|
|
11267
11267
|
.tchow-stripWrap {
|
|
11268
11268
|
width: 100%;
|
|
11269
|
-
overflow: hidden;
|
|
11269
|
+
overflow-x: hidden;
|
|
11270
|
+
overflow-y: visible;
|
|
11270
11271
|
}
|
|
11271
11272
|
.tchow-strip {
|
|
11272
11273
|
display: inline-grid;
|
|
@@ -11297,41 +11298,45 @@
|
|
|
11297
11298
|
text-align: center;
|
|
11298
11299
|
}
|
|
11299
11300
|
.tchow-stripValueText--labeled {
|
|
11300
|
-
min-width:
|
|
11301
|
+
min-width: 4.5rem;
|
|
11301
11302
|
}
|
|
11302
11303
|
.tchow-stripCaption {
|
|
11304
|
+
justify-self: center;
|
|
11303
11305
|
align-self: start;
|
|
11304
11306
|
display: flex;
|
|
11305
11307
|
flex-direction: column;
|
|
11306
11308
|
align-items: center;
|
|
11307
11309
|
gap: var(--spacing-4);
|
|
11308
|
-
min-
|
|
11310
|
+
min-width: 0;
|
|
11311
|
+
}
|
|
11312
|
+
.tchow-stripCaption--labeled {
|
|
11313
|
+
box-sizing: border-box;
|
|
11314
|
+
width: 5.5rem;
|
|
11315
|
+
max-width: 5.5rem;
|
|
11309
11316
|
}
|
|
11310
11317
|
.tchow-stripArrow {
|
|
11311
11318
|
color: var(--color-slate-500);
|
|
11312
11319
|
flex-shrink: 0;
|
|
11313
11320
|
}
|
|
11314
11321
|
.tchow-stripLabel {
|
|
11315
|
-
|
|
11316
|
-
|
|
11317
|
-
|
|
11322
|
+
box-sizing: border-box;
|
|
11323
|
+
display: block;
|
|
11324
|
+
width: 100%;
|
|
11325
|
+
min-width: 0;
|
|
11326
|
+
max-width: 100%;
|
|
11327
|
+
text-align: center;
|
|
11328
|
+
white-space: normal;
|
|
11329
|
+
overflow-wrap: anywhere;
|
|
11330
|
+
word-break: break-word;
|
|
11331
|
+
line-height: 1.25;
|
|
11318
11332
|
font-family: var(--font-family-base);
|
|
11319
11333
|
font-size: var(--typography-body-xs-font-size);
|
|
11320
11334
|
color: var(--text-secondary);
|
|
11321
|
-
white-space: nowrap;
|
|
11322
11335
|
}
|
|
11323
11336
|
.tchow-stripLabelText {
|
|
11324
|
-
|
|
11325
|
-
|
|
11326
|
-
|
|
11327
|
-
}
|
|
11328
|
-
.tchow-stripLabel--edge {
|
|
11329
|
-
width: auto;
|
|
11330
|
-
text-align: center;
|
|
11331
|
-
}
|
|
11332
|
-
.tchow-stripLabel--edge .tchow-stripLabelText {
|
|
11333
|
-
position: static;
|
|
11334
|
-
transform: none;
|
|
11337
|
+
display: block;
|
|
11338
|
+
width: 100%;
|
|
11339
|
+
min-width: 0;
|
|
11335
11340
|
}
|
|
11336
11341
|
|
|
11337
11342
|
/* templates/CryptoTradeConverter/CryptoTradeConverter.css */
|