@progressive-development/pd-page 0.0.6 → 0.0.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/PdMenu.js +2 -2
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Progressive development page helper, teaser, menu, footer.",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "author": "PD Progressive Development",
6
- "version": "0.0.6",
6
+ "version": "0.0.8",
7
7
  "main": "index.js",
8
8
  "module": "index.js",
9
9
  "scripts": {
package/src/PdMenu.js CHANGED
@@ -91,7 +91,7 @@ export class PdMenu extends LitElement {
91
91
 
92
92
  /* Size Elements for small width */
93
93
  @media (max-width: 440px) {
94
- .item {
94
+ .changevis {
95
95
  display: none;
96
96
  }
97
97
  }
@@ -157,7 +157,7 @@ export class PdMenu extends LitElement {
157
157
  ${this.menuItems.map(
158
158
  (item, index) => html`
159
159
  <li
160
- class="item ${this._activeSecIndex === index + 1 ? 'active' : ''}"
160
+ class="item ${this._activeSecIndex === index + 1 ? 'active' : ''} changevis"
161
161
  data-sec="${item.sec}"
162
162
  data-route="${item.route}"
163
163
  @click="${this._menuItemClicked}"