@open-condo/ui 1.27.2 → 1.28.0
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/components/Button/button.d.ts.map +1 -1
- package/dist/components/_utils/hooks/useBreakpoints.d.ts.map +1 -1
- package/dist/components/_utils/hooks/useForceUpdate.d.ts.map +1 -1
- package/dist/components/_utils/responsiveObserve.d.ts +2 -2
- package/dist/components/_utils/responsiveObserve.d.ts.map +1 -1
- package/dist/hooks.js +7 -11
- package/dist/index.js +9 -13
- package/dist/style-vars/variables.css +1 -1
- package/dist/style-vars/variables.less +1 -1
- package/dist/styles.css +42 -1
- package/dist/styles.min.css +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -5547,14 +5547,55 @@ span.condo-typography-ellipsis-single-line {
|
|
|
5547
5547
|
width: fit-content;
|
|
5548
5548
|
min-width: 100%;
|
|
5549
5549
|
overflow: hidden;
|
|
5550
|
+
padding: 1px;
|
|
5550
5551
|
}
|
|
5551
5552
|
.condo-modal-root .condo-modal .condo-modal-footer {
|
|
5552
5553
|
padding: 19px 40px 20px;
|
|
5553
5554
|
border-top: 1px solid #e1e5ed;
|
|
5554
5555
|
}
|
|
5555
|
-
.condo-modal-root .condo-modal .condo-modal-footer .condo-btn + .condo-btn:not(.condo-dropdown-trigger)
|
|
5556
|
+
.condo-modal-root .condo-modal .condo-modal-footer > .condo-btn + .condo-btn:not(.condo-dropdown-trigger) {
|
|
5556
5557
|
margin-left: 0;
|
|
5557
5558
|
}
|
|
5559
|
+
@media screen and (min-width: 0px ) and (max-width: 767px ) {
|
|
5560
|
+
.condo-modal-root .condo-modal {
|
|
5561
|
+
width: auto !important;
|
|
5562
|
+
}
|
|
5563
|
+
.condo-modal-root .condo-modal {
|
|
5564
|
+
position: absolute;
|
|
5565
|
+
left: 0;
|
|
5566
|
+
right: 0;
|
|
5567
|
+
bottom: 0;
|
|
5568
|
+
top: auto;
|
|
5569
|
+
top: initial;
|
|
5570
|
+
max-width: 100%;
|
|
5571
|
+
margin: 16px;
|
|
5572
|
+
}
|
|
5573
|
+
.condo-modal-root .condo-modal .condo-modal-header {
|
|
5574
|
+
padding: 24px 48px 24px 24px;
|
|
5575
|
+
}
|
|
5576
|
+
.condo-modal-root .condo-modal .condo-modal-close {
|
|
5577
|
+
top: 24px;
|
|
5578
|
+
right: 24px;
|
|
5579
|
+
}
|
|
5580
|
+
.condo-modal-root .condo-modal .condo-modal-body {
|
|
5581
|
+
margin: 0 24px;
|
|
5582
|
+
padding: 0 0 24px;
|
|
5583
|
+
}
|
|
5584
|
+
.condo-modal-root .condo-modal .condo-modal-footer {
|
|
5585
|
+
padding: 24px;
|
|
5586
|
+
}
|
|
5587
|
+
.condo-modal-root .condo-modal .condo-modal-footer > .condo-btn {
|
|
5588
|
+
width: 100%;
|
|
5589
|
+
}
|
|
5590
|
+
.condo-modal-root .condo-modal .condo-modal-footer > .condo-btn:not(:first-child) {
|
|
5591
|
+
margin-top: 16px;
|
|
5592
|
+
}
|
|
5593
|
+
}
|
|
5594
|
+
@media screen and (min-width: 768px ) {
|
|
5595
|
+
.condo-modal-root .condo-modal .condo-modal-footer > .condo-btn + .condo-btn:not(.condo-dropdown-trigger):not(:first-child) {
|
|
5596
|
+
margin-left: 16px;
|
|
5597
|
+
}
|
|
5598
|
+
}
|
|
5558
5599
|
|
|
5559
5600
|
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
5560
5601
|
/* stylelint-disable no-duplicate-selectors */
|