@aquera/nile-elements 0.0.4-4 → 0.0.4-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/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.0.4-4",
6
+ "version": "0.0.4-5",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -135,9 +135,10 @@ export const styles = css`
135
135
  --nile-svg-stroke: white;
136
136
  }
137
137
 
138
- .checkbox__icon {
138
+ .checkbox__helptext-icon {
139
139
  float: right;
140
140
  cursor: pointer;
141
+ margin-right: 12px;
141
142
  }
142
143
  `;
143
144
 
@@ -239,7 +239,7 @@ export class NileCheckbox extends NileElement {
239
239
  </label>
240
240
 
241
241
  ${hasHelpText
242
- ? html` <nile-icon name="question" @click=${this.toggleHelpText} class="checkbox__icon"></nile-icon> `
242
+ ? html` <nile-icon name="question" @click=${this.toggleHelpText} class="checkbox__helptext-icon"></nile-icon> `
243
243
  : ``}
244
244
 
245
245
  ${hasHelpText && this.showHelpText