Skip to content

Commit 4452c61

Browse files
authored
Merge pull request #53 from membean/upgrade-dependencies-security-alerts
Upgrade dependencies security alerts
2 parents 8496578 + 21a381c commit 4452c61

File tree

4 files changed

+2827
-2406
lines changed

4 files changed

+2827
-2406
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
},
1414
"devDependencies": {
1515
"@babel/cli": "^7.19.3",
16+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
1617
"@babel/preset-react": "^7.18.6",
1718
"@testing-library/jest-dom": "^5.16.5",
1819
"@testing-library/react": "^13.4.0",

src/App.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
@import "./scss/variables.scss";
2-
@import "./scss/styles.scss";
1+
@use "./scss/variables.scss" as *;
2+
@use "./scss/styles.scss" as *;

src/scss/styles.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use "../scss/variables.scss" as *;
2+
13
html {
24
font-size: 18px;
35
line-height: 1.5;
@@ -84,7 +86,7 @@ a {
8486
text-decoration: underline;
8587

8688
&:focus {
87-
box-shadow: 0 0 0 $outline-width/2 $outline-color;
89+
box-shadow: 0 0 0 calc($outline-width / 2) $outline-color;
8890
outline: none;
8991
}
9092

0 commit comments

Comments
 (0)