feat: upgrade deps

This commit is contained in:
fiftin 2024-04-22 21:56:00 +05:00
parent 20720ca4f9
commit 6dbe998062
No known key found for this signature in database
GPG Key ID: 044381366A5D4731
4 changed files with 13478 additions and 13332 deletions

26792
client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -46,14 +46,14 @@
"jsdom": "^8.4.1",
"mocha": "^6.2.0",
"morgan": "^1.6.1",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"path": "^0.12.7",
"proxyquire": "^1.7.4",
"react-addons-test-utils": "^15.0.1",
"rimraf": "^2.6.3",
"run-sequence": "^1.1.1",
"sass-loader": "^7.1.0",
"sass": "^1.75.0",
"sass-loader": "^9.0.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.23.1",

View File

@ -8,7 +8,7 @@ p {
&.-large {
font-size: $font-size--lg;
font-weight: bold;
line-height: $half-space * 3 / 2;
line-height: calc($half-space * 3 / 2);
}
&.-medium {
@ -20,7 +20,7 @@ p {
&.-small {
font-size: $font-size--sm;
font-weight: bold;
line-height: $half-space * 2 / 3;
line-height: calc($half-space * 2 / 3);
}
&.-smallest {
@ -30,13 +30,13 @@ p {
}
h1 {
@extend .heading.-large;
@extend .heading, .-large;
}
h2 {
@extend .heading.-medium;
@extend .heading, .-medium;
}
h3 {
@extend .heading.-small;
}
@extend .heading, .-small;
}

View File

@ -16,3 +16,5 @@ define('MYSQL_PORT', $mysql_port);
define('MYSQL_USER', $mysql_user);
define('MYSQL_PASSWORD', $mysql_password);
define('MYSQL_DATABASE', $mysql_database);
error_reporting(E_ALL ^ E_DEPRECATED);