@useblu/ocean-core 1.60.0 → 1.61.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 +6 -0
- package/ocean.css +11 -1
- package/ocean.css.map +1 -1
- package/ocean.min.css +1 -1
- package/ocean.min.css.map +1 -1
- package/package.json +1 -1
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.61.0](https://github.com/ocean-ds/ocean-web/compare/v1.60.0...v1.61.0) (2024-06-14)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- drawer ([#1105](https://github.com/ocean-ds/ocean-web/issues/1105)) ([1c749e0](https://github.com/ocean-ds/ocean-web/commit/1c749e011aa19acf67f1deb0cc15e47618f40e3f))
|
|
11
|
+
|
|
6
12
|
# [1.60.0](https://github.com/ocean-ds/ocean-web/compare/v1.59.3...v1.60.0) (2024-06-13)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -3934,8 +3934,13 @@
|
|
|
3934
3934
|
top: 0;
|
|
3935
3935
|
transition: all 335ms ease-out 0ms;
|
|
3936
3936
|
visibility: hidden;
|
|
3937
|
+
}
|
|
3938
|
+
.ods-drawer--small {
|
|
3937
3939
|
width: 378px;
|
|
3938
3940
|
}
|
|
3941
|
+
.ods-drawer--large {
|
|
3942
|
+
width: 476px;
|
|
3943
|
+
}
|
|
3939
3944
|
.ods-drawer--right {
|
|
3940
3945
|
left: auto;
|
|
3941
3946
|
right: 0;
|
|
@@ -3964,7 +3969,7 @@
|
|
|
3964
3969
|
|
|
3965
3970
|
.ods-drawer__content--header {
|
|
3966
3971
|
display: flex;
|
|
3967
|
-
height: 48px;
|
|
3972
|
+
min-height: 48px;
|
|
3968
3973
|
padding: 0 24px;
|
|
3969
3974
|
}
|
|
3970
3975
|
.ods-drawer__content--header--left {
|
|
@@ -3990,6 +3995,11 @@
|
|
|
3990
3995
|
.ods-drawer__content--header .ods-btn--primary:hover {
|
|
3991
3996
|
background-color: white;
|
|
3992
3997
|
}
|
|
3998
|
+
@media (max-width: 767px) {
|
|
3999
|
+
.ods-drawer__content--header {
|
|
4000
|
+
padding: 0 16px;
|
|
4001
|
+
}
|
|
4002
|
+
}
|
|
3993
4003
|
|
|
3994
4004
|
.ods-snackbar {
|
|
3995
4005
|
align-items: center;
|