@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/README.md +3 -0
- package/dist/nile-tab-group/nile-tab-group.cjs.js.map +1 -1
- package/dist/nile-tab-group/nile-tab-group.css.cjs.js +1 -1
- package/dist/nile-tab-group/nile-tab-group.css.cjs.js.map +1 -1
- package/dist/nile-tab-group/nile-tab-group.css.esm.js +3 -3
- package/dist/src/nile-tab-group/nile-tab-group.css.js +3 -3
- package/dist/src/nile-tab-group/nile-tab-group.css.js.map +1 -1
- package/dist/src/nile-tab-group/nile-tab-group.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/nile-tab-group/nile-tab-group.css.ts +3 -3
- package/src/nile-tab-group/nile-tab-group.ts +1 -1
package/package.json
CHANGED
@@ -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-
|
52
|
+
background: var(--nile-colors-neutral-400);
|
53
53
|
bottom:0px;
|
54
|
-
z-index
|
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
|
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
|
|