@maboussoleaidant/design-system 0.1.31 → 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.
@@ -2973,10 +2973,13 @@ button.mba-input-icon__icon:hover {
2973
2973
  z-index: 100;
2974
2974
  }
2975
2975
 
2976
- .mba-header--transparent {
2976
+ .mba-header--fixed {
2977
2977
  position: fixed;
2978
2978
  top: 0;
2979
2979
  z-index: 100;
2980
+ }
2981
+
2982
+ .mba-header--transparent {
2980
2983
  background-color: transparent;
2981
2984
  box-shadow: none;
2982
2985
  border-radius: 0;
@@ -3824,8 +3827,8 @@ button.mba-input-icon__icon:hover {
3824
3827
  position: absolute;
3825
3828
  left: 0;
3826
3829
  right: 0;
3827
- top: 0;
3828
- height: var(--mba-wave-height);
3830
+ top: -1px;
3831
+ height: calc(var(--mba-wave-height) + 1px);
3829
3832
  background-color: var(--mba-color-white);
3830
3833
  -webkit-mask-image: var(--mba-wave-dip-down-mask);
3831
3834
  -webkit-mask-size: 100% 100%;
@@ -3846,8 +3849,8 @@ button.mba-input-icon__icon:hover {
3846
3849
  position: absolute;
3847
3850
  left: 0;
3848
3851
  right: 0;
3849
- bottom: 0;
3850
- height: var(--mba-wave-height);
3852
+ bottom: -1px;
3853
+ height: calc(var(--mba-wave-height) + 1px);
3851
3854
  background-color: var(--mba-color-white);
3852
3855
  -webkit-mask-image: var(--mba-wave-dip-up-mask);
3853
3856
  -webkit-mask-size: 100% 100%;
@@ -3864,14 +3867,14 @@ button.mba-input-icon__icon:hover {
3864
3867
 
3865
3868
  .mba-section--wave-sm.mba-section--wave-top::before,
3866
3869
  .mba-section--wave-sm.mba-section--wave-both::before {
3867
- height: var(--mba-wave-sm-height);
3870
+ height: calc(var(--mba-wave-sm-height) + 1px);
3868
3871
  -webkit-mask-image: var(--mba-wave-sm-dip-down-mask);
3869
3872
  mask-image: var(--mba-wave-sm-dip-down-mask);
3870
3873
  }
3871
3874
 
3872
3875
  .mba-section--wave-sm.mba-section--wave-bottom::after,
3873
3876
  .mba-section--wave-sm.mba-section--wave-both::after {
3874
- height: var(--mba-wave-sm-height);
3877
+ height: calc(var(--mba-wave-sm-height) + 1px);
3875
3878
  -webkit-mask-image: var(--mba-wave-sm-dip-up-mask);
3876
3879
  mask-image: var(--mba-wave-sm-dip-up-mask);
3877
3880
  }