impact-analysis 1.0.1 → 1.0.2

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/index.mjs +8 -4
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -222,10 +222,18 @@ const htmlContent = `
222
222
  color: #fff
223
223
  }
224
224
 
225
+ .btn-svg path {
226
+ fill: #fefefe;
227
+ }
228
+
225
229
  .btn-active:hover svg path {
226
230
  fill: #1f4afe;
227
231
  }
228
232
 
233
+ .btn-theme:hover svg path {
234
+ fill: #1f4afe;
235
+ }
236
+
229
237
  .btn-theme:hover {
230
238
  background: #fff;
231
239
  color: #1f4afe;
@@ -238,10 +246,6 @@ const htmlContent = `
238
246
  margin-right: 10px;
239
247
  }
240
248
 
241
- .btn-svg path {
242
- fill: #fefefe;
243
- }
244
-
245
249
  th {
246
250
  background: #1f4afe;
247
251
  background: linear-gradient(90deg,#1f4afe 35%,#167cfc);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impact-analysis",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Tool to analyze code impact based on changed files and dependencies.",
5
5
  "main": "index.js",
6
6
  "scripts": {