@cal.macconnachie/web-components 2.0.4 → 2.0.5
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/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5899,7 +5899,6 @@ class ie extends N {
|
|
|
5899
5899
|
/* Sidebar Layout */
|
|
5900
5900
|
.tabs-sidebar {
|
|
5901
5901
|
position: sticky;
|
|
5902
|
-
top: var(--space-4, 1rem);
|
|
5903
5902
|
display: flex;
|
|
5904
5903
|
flex-direction: column;
|
|
5905
5904
|
gap: var(--space-4, 1rem);
|
|
@@ -6172,9 +6171,11 @@ class ie extends N {
|
|
|
6172
6171
|
@keyframes fadeIn {
|
|
6173
6172
|
from {
|
|
6174
6173
|
opacity: 0;
|
|
6174
|
+
transform: translateY(8px);
|
|
6175
6175
|
}
|
|
6176
6176
|
to {
|
|
6177
6177
|
opacity: 1;
|
|
6178
|
+
transform: translateY(0);
|
|
6178
6179
|
}
|
|
6179
6180
|
}
|
|
6180
6181
|
|