@spaced-out/ui-design-system 0.1.54 → 0.1.55
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
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.55](https://github.com/spaced-out/ui-design-system/compare/v0.1.54...v0.1.55) (2023-09-27)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* sticky header elevation fix ([480da97](https://github.com/spaced-out/ui-design-system/commit/480da97b5d506ea86ccff88c760f5ec30c2bb325))
|
|
11
|
+
|
|
5
12
|
### [0.1.54](https://github.com/spaced-out/ui-design-system/compare/v0.1.53...v0.1.54) (2023-09-25)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
@value (sizeFluid, size2, size48, size60, size240, size300) from '../../styles/variables/_size.css';
|
|
15
15
|
@value (borderWidthNone, borderWidthPrimary, borderRadiusNone, borderRadiusMedium, borderWidthSecondary) from '../../styles/variables/_border.css';
|
|
16
16
|
@value (fontLineHeight170) from '../../styles/variables/_font.css';
|
|
17
|
-
@value (elevationCard) from '../../styles/variables/_elevation.css';
|
|
17
|
+
@value (elevationCard, elevationMenu) from '../../styles/variables/_elevation.css';
|
|
18
18
|
|
|
19
19
|
.fooBar {
|
|
20
20
|
color: colorFillPrimary;
|
|
@@ -262,7 +262,8 @@
|
|
|
262
262
|
.stickyHeader {
|
|
263
263
|
position: sticky;
|
|
264
264
|
top: spaceNone;
|
|
265
|
-
|
|
265
|
+
/* This is to let the menu container scroll below the sticky table header, if you are opening a menu inside the table */
|
|
266
|
+
z-index: calc(elevationCard + elevationMenu);
|
|
266
267
|
}
|
|
267
268
|
|
|
268
269
|
.stickyHeader::after {
|