@loafmarkets/ui 0.1.258 → 0.1.259
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 +26 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15024,24 +15024,42 @@ var ActivityWrapper = styled9__default.default.div`
|
|
|
15024
15024
|
}
|
|
15025
15025
|
`;
|
|
15026
15026
|
var NewsVideoRow = styled9__default.default.div`
|
|
15027
|
-
display:
|
|
15028
|
-
grid-template-columns: minmax(380px, 520px) minmax(0, 1fr);
|
|
15027
|
+
display: flex;
|
|
15029
15028
|
gap: 1.5rem;
|
|
15030
15029
|
margin-top: 1.5rem;
|
|
15031
15030
|
max-width: 1800px;
|
|
15032
15031
|
margin-left: auto;
|
|
15033
15032
|
margin-right: auto;
|
|
15034
15033
|
height: 700px;
|
|
15035
|
-
|
|
15036
|
-
|
|
15037
|
-
|
|
15038
|
-
|
|
15039
|
-
|
|
15034
|
+
|
|
15035
|
+
& > *:first-child {
|
|
15036
|
+
flex: 0 0 420px;
|
|
15037
|
+
min-width: 0;
|
|
15038
|
+
overflow: hidden;
|
|
15040
15039
|
}
|
|
15041
|
-
|
|
15040
|
+
|
|
15041
|
+
& > *:last-child {
|
|
15042
|
+
flex: 1 1 0;
|
|
15042
15043
|
min-width: 0;
|
|
15043
15044
|
overflow: hidden;
|
|
15044
15045
|
}
|
|
15046
|
+
|
|
15047
|
+
@media (max-width: 1024px) {
|
|
15048
|
+
flex-direction: column;
|
|
15049
|
+
height: auto;
|
|
15050
|
+
gap: 1rem;
|
|
15051
|
+
|
|
15052
|
+
& > *:first-child {
|
|
15053
|
+
flex: none;
|
|
15054
|
+
width: 100%;
|
|
15055
|
+
}
|
|
15056
|
+
|
|
15057
|
+
& > *:last-child {
|
|
15058
|
+
flex: none;
|
|
15059
|
+
width: 100%;
|
|
15060
|
+
min-height: 400px;
|
|
15061
|
+
}
|
|
15062
|
+
}
|
|
15045
15063
|
`;
|
|
15046
15064
|
var PaymentOption = styled9__default.default.div`
|
|
15047
15065
|
display: flex;
|