Skip to content

Commit

Permalink
Merge pull request #8024 from Ocelot-Social-Community/dependabot-degroup
Browse files Browse the repository at this point in the history
refactor(other): dependabot: degroups webapp package updates for babel, graphql, neo4j, and nuxt
  • Loading branch information
Tirokk authored Oct 28, 2024
2 parents afc2143 + 1e02dc4 commit 7b505d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
14 changes: 1 addition & 13 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,10 @@ updates:
applies-to: version-updates
patterns:
- "*babel*"
graphql:
applies-to: version-updates
patterns:
- "graphql*"
metascraper:
applies-to: version-updates
patterns:
- "metascraper*"
neo4j:
applies-to: version-updates
patterns:
- "neo*"
typescript:
applies-to: version-updates
patterns:
Expand Down Expand Up @@ -106,7 +98,7 @@ updates:
babel:
applies-to: version-updates
patterns:
- "*babel*"
- "@babel*"
eslint:
applies-to: version-updates
patterns:
Expand All @@ -119,10 +111,6 @@ updates:
applies-to: version-updates
patterns:
- "*mapbox*"
nuxt:
applies-to: version-updates
patterns:
- "*nuxt*"
sass:
applies-to: version-updates
patterns:
Expand Down
6 changes: 3 additions & 3 deletions webapp/components/Badges.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default {
$offset: $size * -0.2;
&.hc-badges-dual {
padding-top: math.div($size, 2) - 2;
padding-top: $size / 2 - 2;
}
.hc-badge-container {
Expand All @@ -59,10 +59,10 @@ export default {
margin-left: -6px;
}
&:first-child {
margin-left: math.div(-$size, 3);
margin-left: -$size / 3;
}
&:last-child {
margin-right: math.div(-$size, 3);
margin-right: -$size / 3;
}
}
}
Expand Down

0 comments on commit 7b505d3

Please sign in to comment.