@useblu/ocean-core 1.112.1 → 1.113.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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.113.0](https://github.com/ocean-ds/ocean-web/compare/v1.112.1...v1.113.0) (2025-10-22)
7
+
8
+ ### Features
9
+
10
+ - updates modals ([#1193](https://github.com/ocean-ds/ocean-web/issues/1193)) ([ea8c934](https://github.com/ocean-ds/ocean-web/commit/ea8c934ec926dddb7f99d350019d977867e28566))
11
+
6
12
  ## [1.112.1](https://github.com/ocean-ds/ocean-web/compare/v1.112.0...v1.112.1) (2025-10-07)
7
13
 
8
14
  ### Bug Fixes
package/ocean.css CHANGED
@@ -2869,7 +2869,12 @@
2869
2869
  opacity: 0;
2870
2870
  }
2871
2871
  .ods-modal__header {
2872
- padding: 16px;
2872
+ padding: 18px 18px 10px;
2873
+ }
2874
+ @media (max-width: 767.98px) {
2875
+ .ods-modal__header {
2876
+ padding: 14px 14px 10px;
2877
+ }
2873
2878
  }
2874
2879
  .ods-modal__header-close {
2875
2880
  background: transparent;
@@ -2882,7 +2887,12 @@
2882
2887
  position: relative;
2883
2888
  }
2884
2889
  .ods-modal__body {
2885
- padding: 0 24px 24px;
2890
+ padding: 0 32px 32px;
2891
+ }
2892
+ @media (max-width: 767.98px) {
2893
+ .ods-modal__body {
2894
+ padding: 0 16px 16px;
2895
+ }
2886
2896
  }
2887
2897
 
2888
2898
  .ods-modal__content {
@@ -2936,7 +2946,7 @@
2936
2946
  }
2937
2947
 
2938
2948
  .ods-modal__content--sm {
2939
- max-width: 540px;
2949
+ max-width: 420px;
2940
2950
  }
2941
2951
  @media (max-width: 767.98px) {
2942
2952
  .ods-modal__content--sm {
@@ -2945,7 +2955,7 @@
2945
2955
  }
2946
2956
 
2947
2957
  .ods-modal__content--md {
2948
- max-width: 680px;
2958
+ max-width: 540px;
2949
2959
  }
2950
2960
  @media (max-width: 767.98px) {
2951
2961
  .ods-modal__content--md {
@@ -2954,7 +2964,7 @@
2954
2964
  }
2955
2965
 
2956
2966
  .ods-modal__content--lg {
2957
- max-width: 800px;
2967
+ max-width: 660px;
2958
2968
  }
2959
2969
  @media (max-width: 767.98px) {
2960
2970
  .ods-modal__content--lg {
@@ -2962,6 +2972,15 @@
2962
2972
  }
2963
2973
  }
2964
2974
 
2975
+ .ods-modal__content--xl {
2976
+ max-width: 780px;
2977
+ }
2978
+ @media (max-width: 767.98px) {
2979
+ .ods-modal__content--xl {
2980
+ max-width: none;
2981
+ }
2982
+ }
2983
+
2965
2984
  .ods-progress svg {
2966
2985
  -webkit-animation: ods-loading-animation 0.8s linear infinite;
2967
2986
  animation: ods-loading-animation 0.8s linear infinite;