@aquera/nile-elements 0.1.26 → 0.1.27

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent nile-elements following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "nile-elements",
6
- "version": "0.1.26",
6
+ "version": "0.1.27",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -49,9 +49,9 @@ export const styles = css`
49
49
  position: absolute;
50
50
  height: var(--track-width);
51
51
  width: 100%;
52
- background: var(--nile-tab-track-color);
52
+ background: var(--nile-colors-neutral-400);
53
53
  bottom:0px;
54
- z-index:-1;
54
+ z-index:0;
55
55
  }
56
56
 
57
57
  .tab-group--has-scroll-controls .tab-group__nav-container {
@@ -127,7 +127,7 @@ export const styles = css`
127
127
  .tab-group--top .tab-group__indicator {
128
128
  bottom: 0px;
129
129
  border-bottom: 2px solid var(--nile-colors-primary-600);
130
- z-index:-1;
130
+ z-index:0;
131
131
  }
132
132
 
133
133
  .tab-group--top .tab-group__body {
@@ -5,7 +5,7 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- import {LitElement, html, CSSResultArray, TemplateResult} from 'lit';
8
+ import {LitElement, html, CSSResultArray, TemplateResult, nothing} from 'lit';
9
9
  import { customElement, property } from 'lit/decorators.js';
10
10
  import {styles} from './nile-tab-group.css';
11
11