@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 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: grid;
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
- overflow: hidden;
15036
- @media (max-width: 1024px) {
15037
- grid-template-columns: 1fr;
15038
- height: auto;
15039
- gap: 1rem;
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;