@team_yumi/ramen 1.0.2-next.20240228-6905aa0-34f58d1d0328f0950bc4546871800047 → 1.0.2-next.20240229-139a8c4-21036a67ffdd379cc954c108274fc6d9
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/index.css +13 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/src/components/core/x-card/root.d.ts +1 -0
- package/src/components/mobile/x-modal/root.d.ts +2 -2
- package/src/models/Collections/IIconsAndSymbols.d.ts +1 -0
- package/src/models/Collections/IModalSize.d.ts +1 -0
- package/src/models/Collections/index.d.ts +3 -1
package/index.css
CHANGED
|
@@ -3775,12 +3775,17 @@ body {
|
|
|
3775
3775
|
height: 250px;
|
|
3776
3776
|
}
|
|
3777
3777
|
|
|
3778
|
+
.root-module_x-modal-size_auto__bmf2j.root-module_x-modal-visible__kkdBb .root-module_x-modal__modal-show__ygPq9 {
|
|
3779
|
+
transform: translateY(0);
|
|
3780
|
+
}
|
|
3781
|
+
|
|
3778
3782
|
.root-module_x-modal__bOyFq.root-module_x-modal-visible__kkdBb .root-module_x-modal__backdrop__Kj2dm {
|
|
3779
3783
|
display: block;
|
|
3780
3784
|
}
|
|
3781
3785
|
|
|
3782
3786
|
.root-module_x-modal__modal__4ywZm {
|
|
3783
3787
|
height: 0;
|
|
3788
|
+
max-height: 100%;
|
|
3784
3789
|
position: relative;
|
|
3785
3790
|
background-color: var(--color-neutral-lightest);
|
|
3786
3791
|
border-top-left-radius: var(--xbox-rounding-xl);
|
|
@@ -3791,6 +3796,12 @@ body {
|
|
|
3791
3796
|
justify-content: space-between;
|
|
3792
3797
|
}
|
|
3793
3798
|
|
|
3799
|
+
.root-module_x-modal-size_auto__bmf2j .root-module_x-modal__modal__4ywZm {
|
|
3800
|
+
height: auto;
|
|
3801
|
+
transform: translateY(100%);
|
|
3802
|
+
transition: transform 0.3s ease-out 0s;
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3794
3805
|
.root-module_x-modal__backdrop__Kj2dm {
|
|
3795
3806
|
position: fixed;
|
|
3796
3807
|
top: 0px;
|
|
@@ -3814,7 +3825,8 @@ body {
|
|
|
3814
3825
|
border-radius: 50%;
|
|
3815
3826
|
}
|
|
3816
3827
|
|
|
3817
|
-
.root-module_x-modal__modal__header__icon__KbIDv,
|
|
3828
|
+
.root-module_x-modal__modal__header__icon__KbIDv,
|
|
3829
|
+
.root-module_x-modal__modal__header__icon__KbIDv > div {
|
|
3818
3830
|
height: 36px;
|
|
3819
3831
|
width: 36px;
|
|
3820
3832
|
}
|