@loafmarkets/ui 0.1.352 → 0.1.353
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 +23 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -13438,8 +13438,14 @@ var Modal = styled9.div`
|
|
|
13438
13438
|
padding: 2rem;
|
|
13439
13439
|
max-width: 480px;
|
|
13440
13440
|
width: 90%;
|
|
13441
|
+
max-height: 90vh;
|
|
13442
|
+
overflow-y: auto;
|
|
13443
|
+
overflow-x: hidden;
|
|
13441
13444
|
box-shadow: 0 20px 60px rgba(0,0,0,0.5);
|
|
13442
|
-
|
|
13445
|
+
|
|
13446
|
+
@media (max-width: 768px) {
|
|
13447
|
+
padding: 1.5rem;
|
|
13448
|
+
}
|
|
13443
13449
|
`;
|
|
13444
13450
|
var ModalHeader = styled9.div`
|
|
13445
13451
|
display: flex;
|
|
@@ -13545,6 +13551,12 @@ var ModalFooter = styled9.div`
|
|
|
13545
13551
|
align-items: center;
|
|
13546
13552
|
justify-content: space-between;
|
|
13547
13553
|
gap: 0.75rem;
|
|
13554
|
+
|
|
13555
|
+
@media (max-width: 560px) {
|
|
13556
|
+
flex-direction: column;
|
|
13557
|
+
align-items: stretch;
|
|
13558
|
+
gap: 1rem;
|
|
13559
|
+
}
|
|
13548
13560
|
`;
|
|
13549
13561
|
var DontShowLabel = styled9.label`
|
|
13550
13562
|
display: flex;
|
|
@@ -13562,6 +13574,11 @@ var ButtonRow2 = styled9.div`
|
|
|
13562
13574
|
gap: 1rem;
|
|
13563
13575
|
justify-content: flex-end;
|
|
13564
13576
|
flex-shrink: 0;
|
|
13577
|
+
|
|
13578
|
+
@media (max-width: 560px) {
|
|
13579
|
+
width: 100%;
|
|
13580
|
+
gap: 0.75rem;
|
|
13581
|
+
}
|
|
13565
13582
|
`;
|
|
13566
13583
|
var BaseButton = styled9.button`
|
|
13567
13584
|
padding: 0.75rem 1.5rem;
|
|
@@ -13579,6 +13596,11 @@ var BaseButton = styled9.button`
|
|
|
13579
13596
|
cursor: not-allowed;
|
|
13580
13597
|
opacity: 0.75;
|
|
13581
13598
|
}
|
|
13599
|
+
|
|
13600
|
+
@media (max-width: 560px) {
|
|
13601
|
+
flex: 1;
|
|
13602
|
+
padding: 0.875rem 1rem;
|
|
13603
|
+
}
|
|
13582
13604
|
`;
|
|
13583
13605
|
var SecondaryButton = styled9(BaseButton)`
|
|
13584
13606
|
background: rgba(255,255,255,0.1);
|