@maboussoleaidant/design-system 0.1.32 → 0.1.33
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.
|
@@ -3827,8 +3827,8 @@ button.mba-input-icon__icon:hover {
|
|
|
3827
3827
|
position: absolute;
|
|
3828
3828
|
left: 0;
|
|
3829
3829
|
right: 0;
|
|
3830
|
-
top:
|
|
3831
|
-
height: var(--mba-wave-height);
|
|
3830
|
+
top: -1px;
|
|
3831
|
+
height: calc(var(--mba-wave-height) + 1px);
|
|
3832
3832
|
background-color: var(--mba-color-white);
|
|
3833
3833
|
-webkit-mask-image: var(--mba-wave-dip-down-mask);
|
|
3834
3834
|
-webkit-mask-size: 100% 100%;
|
|
@@ -3849,8 +3849,8 @@ button.mba-input-icon__icon:hover {
|
|
|
3849
3849
|
position: absolute;
|
|
3850
3850
|
left: 0;
|
|
3851
3851
|
right: 0;
|
|
3852
|
-
bottom:
|
|
3853
|
-
height: var(--mba-wave-height);
|
|
3852
|
+
bottom: -1px;
|
|
3853
|
+
height: calc(var(--mba-wave-height) + 1px);
|
|
3854
3854
|
background-color: var(--mba-color-white);
|
|
3855
3855
|
-webkit-mask-image: var(--mba-wave-dip-up-mask);
|
|
3856
3856
|
-webkit-mask-size: 100% 100%;
|
|
@@ -3867,14 +3867,14 @@ button.mba-input-icon__icon:hover {
|
|
|
3867
3867
|
|
|
3868
3868
|
.mba-section--wave-sm.mba-section--wave-top::before,
|
|
3869
3869
|
.mba-section--wave-sm.mba-section--wave-both::before {
|
|
3870
|
-
height: var(--mba-wave-sm-height);
|
|
3870
|
+
height: calc(var(--mba-wave-sm-height) + 1px);
|
|
3871
3871
|
-webkit-mask-image: var(--mba-wave-sm-dip-down-mask);
|
|
3872
3872
|
mask-image: var(--mba-wave-sm-dip-down-mask);
|
|
3873
3873
|
}
|
|
3874
3874
|
|
|
3875
3875
|
.mba-section--wave-sm.mba-section--wave-bottom::after,
|
|
3876
3876
|
.mba-section--wave-sm.mba-section--wave-both::after {
|
|
3877
|
-
height: var(--mba-wave-sm-height);
|
|
3877
|
+
height: calc(var(--mba-wave-sm-height) + 1px);
|
|
3878
3878
|
-webkit-mask-image: var(--mba-wave-sm-dip-up-mask);
|
|
3879
3879
|
mask-image: var(--mba-wave-sm-dip-up-mask);
|
|
3880
3880
|
}
|